This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hauntsaninja
Recipients hauntsaninja
Date 2020-05-04.03:06:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588561584.15.0.715391883465.issue40491@roundup.psfhosted.org>
In-reply-to
Content
```
~ λ python3.9
Python 3.9.0a6+ (heads/master:c95e691, May  3 2020, 19:57:46) 
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import ast
>>> ast.parse("1_2", feature_version=(3, 5))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/shantanu/.pyenv/versions/3.9-dev/lib/python3.9/ast.py", line 50, in parse
    return compile(source, filename, mode, flags,
  File "<unknown>", line 1
    1_2
    ^
SyntaxError: Underscores in numeric literals are only supportedin Python 3.6 and greater
```
History
Date User Action Args
2020-05-04 03:06:24hauntsaninjasetrecipients: + hauntsaninja
2020-05-04 03:06:24hauntsaninjasetmessageid: <1588561584.15.0.715391883465.issue40491@roundup.psfhosted.org>
2020-05-04 03:06:24hauntsaninjalinkissue40491 messages
2020-05-04 03:06:23hauntsaninjacreate