- 582aaf1 bpo-41463: Generate information about jumps from 'opcode.py' rather than duplicating it in 'compile.c' (GH-21714) by Mark Shannon · 4 years, 3 months ago
- 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 4 years, 10 months ago
- 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 4 years, 10 months ago
- 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 4 years, 10 months ago
- fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 5 years ago
- ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 5 years ago
- e3d1455 Update opcode.h header comment to mention the source data file (GH-9935) by Shivank98 · 6 years ago
- 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
- 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 7 years ago
- 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 7 years ago
- f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 8 years ago
- 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 8 years ago
- f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
- f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
- ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
- 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
- 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 8 years ago
- a78c795 Issue 25483: Add an opcode to make f-string formatting more robust. by Eric V. Smith · 9 years ago
- 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
- 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 9 years ago
- 3028c95 Issue #24288: Generated opcode.h no longer contains trailing spaces and tabs. by Serhiy Storchaka · 9 years ago
- 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
- 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 10 years ago
- 02d23a2 Closes Issue 17861: Autogenerate Include/opcode.h from opcode.py. by Kushal Das · 11 years ago
- d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
- e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
- 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 12 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
- 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago
- ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
- 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
- 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
- 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
- 876b2f2 Merged revisions 72912,72920,72940 via svnmerge from by Benjamin Peterson · 15 years ago
- 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 16 years ago
- f289ae6 Merged revisions 67818 via svnmerge from by Antoine Pitrou · 16 years ago
- eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
- 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
- b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
- 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 18 years ago
- 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
- 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
- 00e41de Bytes literal. by Thomas Wouters · 18 years ago
- 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
- 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
- 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
- e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
- e7086d4 INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). by Neal Norwitz · 19 years ago
- c6d210c Get rid of last vestiges of BINARY_DIVIDE. by Neal Norwitz · 19 years ago
- c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
- 9c18e81 Install two code generation optimizations that depend on NOP. by Raymond Hettinger · 20 years ago
- dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 21 years ago
- f4cf76d Revert the previous enhancement to the bytecode optimizer. by Raymond Hettinger · 22 years ago
- 060641d Improved the bytecode optimizer. by Raymond Hettinger · 22 years ago
- 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
- dd32a91 This is my patch by Michael W. Hudson · 22 years ago
- fea59e7 The opcode FOR_LOOP no longer exists. by Guido van Rossum · 22 years ago
- 7198a52 Patch #494783: Rename cmp_op enumerators. by Martin v. Löwis · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
- 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
- 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
- 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
- c219d55 Rich comparisons: ensure that LT == Py_LT, etc. by Guido van Rossum · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- dd8dbdb The real suport for augmented assignment: new opcodes, new PyNumber and by Thomas Wouters · 24 years ago
- ef8ace3 Charles G. Waldman <cgw@fnal.gov>: by Fred Drake · 24 years ago
- 35fd665 PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 24 years ago
- 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
- 0be5aab Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they by Thomas Wouters · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- a403d7d remove reference to CALL_FUNCTION_STAR in comment by Jeremy Hylton · 25 years ago
- 7690151 slightly modified version of Greg Ewing's extended call syntax patch by Jeremy Hylton · 25 years ago
- 9d865e1 Get rid of some obsolete opcodes. by Guido van Rossum · 26 years ago
- 6a33de9 Get rid of obsolete ACCESS_MODE opcode. by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- db3b041 Added BUILD_SLICE opcode. by Guido van Rossum · 28 years ago
- 3d1f095 changes for ** (power) operator by Guido van Rossum · 29 years ago
- 884afd6 keyword arguments and faster function calls by Guido van Rossum · 29 years ago
- 3b46a50 new opcodes RAISE_VARARGS, CALL_FUNCTION by Guido van Rossum · 29 years ago
- 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
- b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
- db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
- a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
- 2583165 Several changes in one: by Guido van Rossum · 31 years ago
- 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 32 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- 5113f5f Copyright for 1992 added by Guido van Rossum · 33 years ago
- 22f863f Added UNPACK_VARARG. by Guido van Rossum · 33 years ago
- 750bf14 Added UNPACK_ARG. by Guido van Rossum · 33 years ago
- 97ff530 Added _GLOBAL opcodes. by Guido van Rossum · 33 years ago
- 7928cd7 Added shift and mask ops. by Guido van Rossum · 33 years ago
- 054ff1f Added opcodes to load local/global variables by Guido van Rossum · 34 years ago
- f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
- 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
- f127027 Added opcodes for classes. by Guido van Rossum · 34 years ago
- 10dc2e8 Initial revision by Guido van Rossum · 34 years ago