summaryrefslogtreecommitdiff
path: root/Lib/test/test_peepholer.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37269: Correctly optimise conditionals with constant booleans (GH-1...Pablo Galindo2019-06-141-0/+7
* bpo-30416: Protect the optimizer during constant folding. (#4860)Serhiy Storchaka2017-12-151-1/+8
* Remove unused imports.Serhiy Storchaka2016-12-161-3/+0
* Replace noop constant statement with expressionVictor Stinner2016-02-081-9/+11
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-17/+1
* Issue #11816: switch test_peepholer to bytecode_helperNick Coghlan2013-05-071-156/+139
* #5057: null merge with 3.2 (only add tests).Ezio Melotti2012-11-051-0/+3
|\
| * #5057: the peepholer no longer optimizes subscription on unicode literals (e....Ezio Melotti2012-11-051-6/+7
* | Implement PEP 393.Martin v. Löwis2011-09-281-4/+0
* | #5057: Merge with 3.2.Ezio Melotti2011-04-151-0/+18
|\ \ | |/
| * #5057: Merge with 3.1.Ezio Melotti2011-04-151-0/+18
| |\
| | * Issue #5057: fix a bug in the peepholer that led to non-portable pyc files be...Ezio Melotti2011-04-151-0/+18
| | * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-31/+31
| * | Issue 11510: Fix BUILD_SET optimizer bug.Raymond Hettinger2011-03-151-1/+13
* | | Issue #11244: Remove outdated peepholer check that was preventing the peephol...Mark Dickinson2011-03-231-0/+11
* | | whitespace fixRaymond Hettinger2011-03-151-9/+9
* | | whitespace fixRaymond Hettinger2011-03-151-0/+1
* | | Issue 11510: Fix BUILD_SET optimizer bug.Raymond Hettinger2011-03-151-1/+13
* | | Issue #11244: The peephole optimizer is now able to constant-foldAntoine Pitrou2011-03-111-2/+29
|/ /
* | use assert[Not]In where appropriateBenjamin Peterson2010-01-191-31/+31
* | Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`,Antoine Pitrou2010-01-161-0/+49
* | Peephole constant folding had missed UNARY_POSITIVE.Raymond Hettinger2009-10-221-0/+1
* | convert old fail* assertions to assert*Benjamin Peterson2009-06-301-31/+31
|/
* 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