berkerpeksag / astor

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

Stop triple quoting strings embedded in function calls #41

Closed pmaupin closed 9 years ago

pmaupin commented 9 years ago

Reduce the number of strings that get triple-quoted by the new pretty printing logic.

It was fairly aggressive at triple-quoting. In general, we do not want to triple-quote strings embedded in lists unless they have line feeds in them.

berkerpeksag commented 9 years ago

LGTM, thanks! Do we need to add a test?

pmaupin commented 9 years ago

Yes, actually, I should/will, thanks. I just fixed it quickly at work...

pmaupin commented 9 years ago

I've pushed a test that fails on the master and works on this branch.

Thanks, Pat

berkerpeksag commented 9 years ago

Thanks!