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-13.07:17:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589354255.32.0.89059001676.issue40614@roundup.psfhosted.org>
In-reply-to
Content
```
~master λ python3.8             
Python 3.8.2 (default, Apr 21 2020, 00:39:48) 
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import ast
>>> ast.parse('''f"{x=}"''')  # should work
<_ast.Module object at 0x10f81af40>
>>> ast.parse('''f"{x=}"''', feature_version=(3, 6))  # should fail, but doesn't
<_ast.Module object at 0x10f857d00>
```
History
Date User Action Args
2020-05-13 07:17:35hauntsaninjasetrecipients: + hauntsaninja
2020-05-13 07:17:35hauntsaninjasetmessageid: <1589354255.32.0.89059001676.issue40614@roundup.psfhosted.org>
2020-05-13 07:17:35hauntsaninjalinkissue40614 messages
2020-05-13 07:17:35hauntsaninjacreate