~pythonregexp2.7/python/issue2636

« back to all changes in this revision

Viewing changes to Modules/cmathmodule.c

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-05-24 16:05:21 UTC
  • mfrom: (39021.1.401 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080524160521-1xenj7p6u3wb89et
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
920
920
        errno = 0;
921
921
        PyFPE_START_PROTECT("arg function", return 0)
922
922
        phi = c_atan2(z);
923
 
        PyFPE_END_PROTECT(r)
 
923
        PyFPE_END_PROTECT(phi)
924
924
        if (errno != 0)
925
925
                return math_error();
926
926
        else