1. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 6 years ago
  2. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 6 years ago
  3. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 6 years ago
  4. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 8 years ago
  5. 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 8 years ago
  6. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  7. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  8. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  9. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  10. 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 8 years ago
  11. 7b22823 Issue #26647: Cleanup opcode by Victor Stinner · 8 years ago
  12. a78c795 Issue 25483: Add an opcode to make f-string formatting more robust. by Eric V. Smith · 9 years ago
  13. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  14. 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 9 years ago
  15. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  16. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  17. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  18. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  19. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  20. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  21. 7448220 Issue #11823: disassembly now shows argument counts on calls with keyword args by Alexander Belopolsky · 12 years ago
  22. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  23. 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago
  24. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  25. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  26. 876b2f2 Merged revisions 72912,72920,72940 via svnmerge from by Benjamin Peterson · 15 years ago
  27. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  28. f289ae6 Merged revisions 67818 via svnmerge from by Antoine Pitrou · 16 years ago
  29. dbdbf75 Remove MAKE_BYTES which is a leftover from the mutable byte literal time. by Georg Brandl · 16 years ago
  30. eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
  31. e8c3d26 Add missing UNPACK_EX opcode. by Thomas Wouters · 16 years ago
  32. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  33. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  34. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  35. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  36. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  37. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  38. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  39. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  40. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  41. e7086d4 INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). by Neal Norwitz · 18 years ago
  42. c6d210c Get rid of last vestiges of BINARY_DIVIDE. by Neal Norwitz · 18 years ago
  43. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  44. 9c18e81 Install two code generation optimizations that depend on NOP. by Raymond Hettinger · 20 years ago
  45. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 20 years ago
  46. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  47. f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 21 years ago
  48. 060641d Improved the bytecode optimizer. by Raymond Hettinger · 21 years ago
  49. 3249ccd new opcode module - extract opcode definitions from dis.py - eventually by Skip Montanaro · 21 years ago