summaryrefslogtreecommitdiff
path: root/Lib/opcode.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-031-1/+1
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-291-1/+0
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-131-0/+3
* Issue #28257: Improved error message when pass a non-iterable asSerhiy Storchaka2016-10-021-2/+3
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-9/+4
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-1/+2
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-0/+1
* Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-121-2/+1
* Issue #27140: Added BUILD_CONST_KEY_MAP opcode.Serhiy Storchaka2016-06-121-0/+1
* Issue #26647: Cleanup opcodeVictor Stinner2016-04-121-3/+1
* Issue 25483: Add an opcode to make f-string formatting more robust.Eric V. Smith2015-11-031-0/+2
* Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-0/+1
* remove STORE_MAP, since it's unusedBenjamin Peterson2015-05-281-1/+0
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-1/+9
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-0/+6
* PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-0/+3
* Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-0/+13
* rather than passing locals to the class body, just execute the class body in ...Benjamin Peterson2013-05-161-1/+0
* check local class namespace before reaching for cells (closes #17853)Benjamin Peterson2013-04-301-0/+3
* Issue #11823: disassembly now shows argument counts on calls with keyword argsAlexander Belopolsky2012-06-071-1/+6
* Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-0/+1
* excise the remains of STOP_CODE, which hasn't done anything useful for yearsBenjamin Peterson2011-07-171-1/+0
* #4617: Previously it was illegal to delete a name from the localAmaury Forgeot d'Arc2010-09-101-0/+2
* Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replacedAntoine Pitrou2010-09-041-2/+1
* Merged revisions 72912,72920,72940 via svnmerge fromBenjamin Peterson2009-06-281-2/+4
* http://bugs.python.org/issue4715Jeffrey Yasskin2009-02-251-3/+5
* Merged revisions 67818 via svnmerge fromAntoine Pitrou2008-12-181-2/+5
* Remove MAKE_BYTES which is a leftover from the mutable byte literal time.Georg Brandl2008-07-201-1/+1
* #3021: Antoine Pitrou's Lexical exception handlersBenjamin Peterson2008-06-111-0/+1
* Add missing UNPACK_EX opcode.Thomas Wouters2008-03-181-1/+1
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-191-1/+2
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-14/+0
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-0/+1
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-2/+3
* Bytes literal.Thomas Wouters2007-02-231-0/+1
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-4/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+0
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-6/+7
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-1/+0
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+1
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-161-1/+1
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-7/+2
* Install two code generation optimizations that depend on NOP.Raymond Hettinger2004-06-211-0/+1
* SF patch #910929: Optimize list comprehensionsRaymond Hettinger2004-03-071-0/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* Revert the previous enhancement to the bytecode optimizer.Raymond Hettinger2003-04-241-2/+0
* Improved the bytecode optimizer.Raymond Hettinger2003-04-221-0/+2
* new opcode module - extract opcode definitions from dis.py - eventuallySkip Montanaro2003-02-271-0/+188