From: Guido van Rossum Date: Fri, 26 Jan 1996 20:53:56 +0000 (+0000) Subject: only use 'j' for imaginary constants X-Git-Tag: v1.4b1~376 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15ad9a6e52ea092bd3b60b8f4201203d869f825c;p=thirdparty%2FPython%2Fcpython.git only use 'j' for imaginary constants --- diff --git a/Python/compile.c b/Python/compile.c index 531287020dcd..3a1d3f68cf59 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -572,7 +572,7 @@ parsenumber(s) errno = 0; end = s + strlen(s) - 1; #ifndef WITHOUT_COMPLEX - imflag = *end == 'i' || *end == 'I' || *end == 'j' || *end == 'J'; + imflag = *end == 'j' || *end == 'J'; #endif if (*end == 'l' || *end == 'L') return long_scan(s, 0);