Ezio Melotti <ezio.melo...@gmail.com> added the comment: >>> 999if 888else 888 File "<eta last command>", line 1 999if 888else 888 ^ SyntaxError: invalid token
This might be because 888e5 is a valid expression, so the 'e' is parsed as part of the number rather than a separate token. >>> 999 if 888.else 888 File "<stdin>", line 1 999 if 888.else 888 ^ SyntaxError: invalid token >>> 999 if 888jelse 888 999 ---------- nosy: +ezio.melotti _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue13610> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com