berkerpeksag / astor

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

Speed optimizations #69

Closed pmaupin closed 7 years ago

pmaupin commented 7 years ago

The profiler shows some low-hanging fruit for speedups. I'll spend a couple of hours looking at what I can do without going overboard.

pmaupin commented 7 years ago

Well, I went overboard. PR #70 reduces the time that python3.6 -m astor.rtrip takes on my machine from 26 seconds to under 10 seconds. It also allows for triple-quoted f-strings by pushing those and regular strings through the same code path.

pmaupin commented 7 years ago

All done.