[issue40491] Typo in SyntaxError produced by pegen for numeric literals

2020-05-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior versions: +Python 3.9 ___ Python tracker ___

[issue40491] Typo in SyntaxError produced by pegen for numeric literals

2020-05-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset c3f001461d5794c81cf5f70e08ae5435fe935ceb by Shantanu in branch 'master': bpo-40491: Fix typo in syntax error for numeric literals (GH-19893) https://github.com/python/cpython/commit/c3f001461d5794c81cf5f70e08ae5435fe935ceb -- nosy:

[issue40491] Typo in SyntaxError produced by pegen for numeric literals

2020-05-03 Thread Shantanu
Change by Shantanu : -- keywords: +patch pull_requests: +19204 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19893 ___ Python tracker ___

[issue40491] Typo in SyntaxError produced by pegen for numeric literals

2020-05-03 Thread Shantanu
New submission from Shantanu : ``` ~ λ 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))