summaryrefslogtreecommitdiffstats
path: root/Python/peephole.c
Commit message (Expand)AuthorAgeFilesLines
* Implement PEP 393.Martin v. Löwis2011-09-281-18/+0
* Issue #13002: Fix Visual Studio warning (not enough actual parameters).Stefan Krah2011-09-211-1/+1
* #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
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-598/+598
| | * Merged revisions 74126,74130-74131,74149,74155,74157,74180-74183,74398 via sv...Georg Brandl2009-08-131-6/+9
| * | Issue 11510: Fix BUILD_SET optimizer bug.Raymond Hettinger2011-03-151-1/+2
* | | Issue #11244: Remove outdated peepholer check that was preventing the peephol...Mark Dickinson2011-03-231-4/+2
* | | Issue 11510: Fix BUILD_SET optimizer bug.Raymond Hettinger2011-03-151-1/+2
* | | Issue #11244: The peephole optimizer is now able to constant-foldAntoine Pitrou2011-03-111-47/+120
|/ /
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-2/+0
* | Issue 8403: Don't mask KeyboardInterrupt during peephole operation.Raymond Hettinger2010-08-221-4/+8
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-616/+616
* | Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`,Antoine Pitrou2010-01-161-4/+16
* | Peephole constant folding had missed UNARY_POSITIVE.Raymond Hettinger2009-10-221-0/+4
* | Merged revisions 73683,73786 via svnmerge fromAlexandre Vassalotti2009-07-211-6/+9
* | Merged revisions 72912,72920,72940 via svnmerge fromBenjamin Peterson2009-06-281-0/+3
|/
* Fix 2 oversights from r69961.Jeffrey Yasskin2009-02-281-3/+5
* http://bugs.python.org/issue4715Jeffrey Yasskin2009-02-251-44/+58
* Issue 2260: Small peephole optimization -- eliminate unnecessary POP_TOP /JUM...Raymond Hettinger2008-11-181-0/+10
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-7/+7
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-2/+2
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61058-61061 ...Christian Heimes2008-02-251-1/+1
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-221-1/+1
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-15/+38
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-6/+10
* Two more patches by Tony Lownds (SF# 1607548).Guido van Rossum2007-02-261-5/+11
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+15
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-4/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+610