summaryrefslogtreecommitdiff
path: root/Lib/test/test_peepholer.py
Commit message (Expand)AuthorAgeFilesLines
* #5057: the peepholer no longer optimizes subscription on unicode literals (e....Ezio Melotti2012-11-051-6/+7
* Issue #5057: fix a bug in the peepholer that led to non-portable pyc files be...Ezio Melotti2011-04-151-0/+18
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-11/+14
* use assert[Not]In where appropriateEzio Melotti2010-01-231-30/+30
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-17/+11
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-11/+17
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-30/+30
* Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} withJeffrey Yasskin2009-02-281-6/+5
* Fix embarrassing typo and fix constantification of NoneRaymond Hettinger2007-03-021-0/+5
* Update the peephole optimizer to remove more dead code (jumps after returns)Neal Norwitz2006-10-141-0/+35
* 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