berkerpeksag / astor

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

Add support for except* syntax (PEP 654) #223

Open am230 opened 3 months ago

am230 commented 3 months ago

Add TryStar support PEP 654 – Exception Groups and except* clause except* (3.11~)

try:
    pass
except* Exception:
    pass

It works above and below 3.11! Please let me know if anything should be added/adjusted.

tasks