berkerpeksag / astor

Python AST read/write
https://pypi.org/project/astor/
BSD 3-Clause "New" or "Revised" License
803 stars 102 forks source link

Support Python 3.8 assignment expressions in code_gen #126

Closed Kodiologist closed 5 years ago

Kodiologist commented 5 years ago
python3 -c 'import ast, astor; print(astor.code_gen.to_source(ast.parse("(a := b)", mode="eval")))'
…
AttributeError: No defined handler for node of type NamedExpr

See PEP 574.