aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/opcode.py
Commit message (Expand)AuthorAge
* http://bugs.python.org/issue4715Jeffrey Yasskin2009-02-25
* Merged revisions 67818 via svnmerge fromAntoine Pitrou2008-12-18
* Remove MAKE_BYTES which is a leftover from the mutable byte literal time.Georg Brandl2008-07-20
* #3021: Antoine Pitrou's Lexical exception handlersBenjamin Peterson2008-06-11
* Add missing UNPACK_EX opcode.Thomas Wouters2008-03-18
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-19
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-30
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-15
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-18
* Bytes literal.Thomas Wouters2007-02-23
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-09
* Patch #1550800: make exec a function.Georg Brandl2006-09-06
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-28
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-25
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-17
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-16
* PEP 343 -- the with-statement.Guido van Rossum2006-02-27
* Install two code generation optimizations that depend on NOP.Raymond Hettinger2004-06-21
* SF patch #910929: Optimize list comprehensionsRaymond Hettinger2004-03-07
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
* Revert the previous enhancement to the bytecode optimizer.Raymond Hettinger2003-04-24
* Improved the bytecode optimizer.Raymond Hettinger2003-04-22
* new opcode module - extract opcode definitions from dis.py - eventuallySkip Montanaro2003-02-27