From: Guido van Rossum Date: Wed, 8 Oct 1997 15:23:55 +0000 (+0000) Subject: Fixed for WITHOUT_COMPLEX compilation (Jack) X-Git-Tag: v1.5a4~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac1fc95c3ca2dd51b63152991b742496838c5e01;p=thirdparty%2FPython%2Fcpython.git Fixed for WITHOUT_COMPLEX compilation (Jack) --- diff --git a/Python/compile.c b/Python/compile.c index 7fbd2e982741..80b737176a59 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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)