summaryrefslogtreecommitdiff
path: root/Lib/test/test_peepholer.py
Commit message (Expand)AuthorAgeFilesLines
* http://bugs.python.org/issue4715Jeffrey Yasskin2009-02-251-5/+5
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-3/+3
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-1/+1
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-7/+15
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+8
* Two more patches by Tony Lownds (SF# 1607548).Guido van Rossum2007-02-261-0/+8
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+35
* UNARY_CONVERT can no longer be generated, so remove a test for the peepholerBrett Cannon2006-08-251-1/+0
* Teach the peepholer to fold unary operations on constants.Raymond Hettinger2005-02-201-0/+19
* Remove set conversion optimization test (backed out of Python/compile.c in rev.Brett Cannon2005-02-101-11/+0
* Adopt Skip's idea to optimize lists of constants in the contextRaymond Hettinger2005-02-071-1/+2
* Transform "x in (1,2,3)" to "x in frozenset([1,2,3])".Raymond Hettinger2005-02-061-0/+10
* Do not fold a constant if a large sequence will result.Raymond Hettinger2005-01-261-0/+4
* Remove test for BINARY_DIVIDE.Raymond Hettinger2005-01-071-1/+0
* Teach the peephole optimizer to fold simple constant expressions.Raymond Hettinger2005-01-021-0/+28
* Maintain peepholer's cumlc invariant by updating the running totalRaymond Hettinger2004-11-021-3/+5
* SF bug #1053819: Segfault in tuple_of_constantsRaymond Hettinger2004-10-261-0/+17
* SF patch #1031667: Fold tuples of constants into a single constantRaymond Hettinger2004-09-221-3/+13
* Whitespace normalization.Tim Peters2004-08-261-5/+5
* SF Patch #1013667: Cleanup Peepholer OutputRaymond Hettinger2004-08-231-0/+104