]> granicus.if.org Git - python/commitdiff
Fixed for WITHOUT_COMPLEX compilation (Jack)
authorGuido van Rossum <guido@python.org>
Wed, 8 Oct 1997 15:23:55 +0000 (15:23 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 8 Oct 1997 15:23:55 +0000 (15:23 +0000)
Python/compile.c

index 7fbd2e9827415e44b847df2f7efcc486e030cca2..80b737176a598fb10e48e4fd4227b6f66bde09a0 100644 (file)
@@ -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)