Commit ac1fc95c authored by Guido van Rossum's avatar Guido van Rossum

Fixed for WITHOUT_COMPLEX compilation (Jack)

parent 2861f4ec
......@@ -844,8 +844,9 @@ parsenumber(co, s)
PyFPE_END_PROTECT(c)
return PyComplex_FromCComplex(c);
}
else {
else
#endif
{
PyFPE_START_PROTECT("atof", return 0)
dx = atof(s);
PyFPE_END_PROTECT(dx)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment