dflook / python-minifier

Transform Python source code into its most compact representation
MIT License
553 stars 40 forks source link

Replace exception calls with names #89

Closed dflook closed 1 year ago

dflook commented 1 year ago

The raise statement will instatiate exception classes itself if necessary, so we can remove parens from exception calls with no args. We can only do this reliably if it's a builtin exception.