summaryrefslogtreecommitdiff
path: root/astroid/tests/testdata/python2/data/joined_strings.py
Commit message (Collapse)AuthorAgeFilesLines
* Add the ability to optimize small ast subtrees.Claudiu Popa2015-01-181-0/+1051
The first use of the AST peephole optimizer is the optimization of multiple BinOp nodes. This removes recursivity in the rebuilder when dealing with a lot of small strings joined by the addition operator. which are now precomputed to the final string. Closes issue #59.