Message375108
| Author |
vstinner |
| Recipients |
BTaskaya, arcivanov, dino.viehland, lukasz.langa, vstinner |
| Date |
2020年08月10日.13:10:32 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1597065032.88.0.120050304004.issue41261@roundup.psfhosted.org> |
| In-reply-to |
| Content |
> From what I understand an RC1 is being released for 3.9. This is a gentle reminder that there is no fix for this yet.
I wrote PR 21807 to backport my changes from master to 3.9.
My PR fix a crash on 3.9 with the following script:
---
import sys
PyCF_ONLY_AST = 1024
tree = compile("x+y", "filename", "exec", PyCF_ONLY_AST)
import _ast
assert PyCF_ONLY_AST == _ast.PyCF_ONLY_AST
compile(tree, "filename", "exec")
del sys.modules['_ast']
import _ast
compile(tree, "filename", "exec")
--- |
|