berkerpeksag / astor

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

SyntaxError: invalid syntax #214

Closed jackiezhang11 closed 1 year ago

jackiezhang11 commented 1 year ago

python 3.7 ubuntu18.04

astor vesion:0.6.2 astor/code_gen.py line 311 def visit_FunctionDef(self, node, async=False): prefix = 'async ' if async else '

SyntaxError: invalid syntax

berkerpeksag commented 1 year ago

Thank you for your report. This has already been fixed in https://github.com/berkerpeksag/astor/commit/fe1ef7f9d746847c157197e4cb2ab6505fe19faf and it has been available since version 0.7. Please upgrade astor to at least 0.7.

jackiezhang11 commented 1 year ago

thank you