mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Fixed #2870: cmathmodule.c compile error
This commit is contained in:
parent
107b812947
commit
0bd23c0a98
2 changed files with 3 additions and 1 deletions
|
@ -920,7 +920,7 @@ cmath_phase(PyObject *self, PyObject *args)
|
|||
errno = 0;
|
||||
PyFPE_START_PROTECT("arg function", return 0)
|
||||
phi = c_atan2(z);
|
||||
PyFPE_END_PROTECT(r)
|
||||
PyFPE_END_PROTECT(z)
|
||||
if (errno != 0)
|
||||
return math_error();
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue