- fa840cc Fix dis markup (GH-23524) by Andre Delfino · 4 years, 9 months ago
- 7301979 bpo-42202: Store func annotations as a tuple (GH-23316) by Yurii Karabas · 4 years, 9 months ago
- 34cd3e9 Fix `List_Append` description, list is extracted at TOS1[-i] (GH-21465) by Xiang Zhang · 5 years ago
- 85dd6bb Improved documentation for `BUILD_CONST_KEY_MAP` (GH-19454) by laike9m · 5 years ago
- b74468e bpo-40122: Updated documentation for dis.findlabels() (GH-19274) by laike9m · 5 years ago
- 70d9d74 Updated documentation for FOR_ITER (GH-19113) by laike9m · 5 years ago
- 6672c16 bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3.6+ (GC-18550) by Taine Zhao · 5 years ago
- 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 6 years ago
- 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 6 years ago
- 8698b34 improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079) by Carl Friedrich Bolz-Tereick · 6 years ago
- 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 6 years ago
- 82f897b Correct release version to 3.9 for RERAISE and WITH_EXCEPT_START bytecodes. (#17318) by Mark Shannon · 6 years ago
- fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 6 years ago
- ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 6 years ago
- 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 6 years ago
- c8a3541 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Jörn Heissler · 6 years ago
- 405f648 bpo-32625: Updated documentation for EXTENDED_ARG. (GH-13985) by Yao Zuo · 6 years ago
- 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 6 years ago
- e1179a5 bpo-19184: Update the documentation of dis module. (GH-13652) by Michele Angrisano · 6 years ago
- 07fbbfd bpo-34906: Doc: Fix typos (GH-9712) by Stéphane Wirtel · 7 years ago
- 7bdf282 bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) by Serhiy Storchaka · 7 years ago
- 5e99b56 bpo-33216: Improve the documentation for CALL_FUNCTION_* (GH-8338) (GH-8784) by Serhiy Storchaka · 7 years ago
- 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
- fe2bbb1 bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822) 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
- 12e7cd8 bpo-32565: Add missed versionadded directives for all new opcodes. (#5199) by Serhiy Storchaka · 8 years ago
- 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 8 years ago
- 0c71653 [Doc] Update opcode for var-positional arguments (#4446) by Moses Koledoye · 8 years ago
- 02e82a0 bpo-31709: Update importlib magic (#3906) by Yury Selivanov · 8 years ago
- fe2b56a bpo-31183: `dis` now handles coroutines & async generators (GH-3077) by syncosmic · 8 years ago
- 1efbf92 bpo-11822: Improve disassembly to show embedded code objects. (#1844) by Serhiy Storchaka · 8 years ago
- 8f9e1bbf bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) by Ivan Levkivskyi · 8 years ago
- 4b2a2a4 bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250) by Ivan Levkivskyi · 8 years ago
- 7e52c3e bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239) by Ivan Levkivskyi · 8 years ago
- 0705f66 bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (#238) by Ivan Levkivskyi · 8 years ago
- 015bce6 Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode. by INADA Naoki · 9 years ago
- 989db5c Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
- ecf41da Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
- b1321fb Issue #28394: More typo fixes for 3.6+ by Martin Panter · 9 years ago
- 34b74ff Add missing versionadded directives by Berker Peksag · 9 years ago
- f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
- ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 9 years ago
- 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 9 years ago
- 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 9 years ago
- b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 9 years ago
- 8b9eefc Issue #26733: Disassembling a class now disassembles class and static methods. by Serhiy Storchaka · 9 years ago
- 585c93d Issue #26733: Disassembling a class now disassembles class and static methods. by Serhiy Storchaka · 9 years ago
- c86c91a Merge typo fixes from 3.5 by Martin Panter · 9 years ago
- cc71a79 Fix typos in documentation and comments by Martin Panter · 9 years ago
- a3a3d73 For FORMAT_VALUE opcode, make it clear that the result of PyObject_Format is pushed on the stack. by Eric V. Smith · 10 years ago
- 9ce52e3 Issue 25483: Fix doc typo and added versionadded. Thanks, Berker Peksag. by Eric V. Smith · 10 years ago
- 281d532 Issue 25483: Update dis.rst with FORMAT_VALUE opcode description. by Eric V. Smith · 10 years ago
- 5e8d47f Issue #16554: fix description for MAKE_CLOSURE. Initial patch by Daniel Urban. by Antoine Pitrou · 10 years ago
- 4ce4f97 Issue #16554: fix description for MAKE_CLOSURE. Initial patch by Daniel Urban. by Antoine Pitrou · 10 years ago
- 66f8828 Issue #24439: Improve PEP 492 related docs. by Yury Selivanov · 10 years ago
- 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 10 years ago
- 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 10 years ago
- 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
- da0870c Add versionadded directives for the matmul operator. by Berker Peksag · 10 years ago
- 2f3d440 merge 3.4 (#23561) by Benjamin Peterson · 10 years ago
- bdf525b wrap everything at 80 chars by Benjamin Peterson · 10 years ago
- 29fec92 link to the correct dis method or function (closes #23561) by Benjamin Peterson · 10 years ago
- 6897e56 Issue #20521: Change ``TOS`` to TOS in dis documentation. by Berker Peksag · 10 years ago
- ab4040e Issue #20521: Change ``TOS`` to TOS in dis documentation. by Berker Peksag · 10 years ago
- f4f314b Issue #22845: Improved formatting of dis documentation. by Serhiy Storchaka · 11 years ago
- f751a9e Issue #22845: Improved formatting of dis documentation. by Serhiy Storchaka · 11 years ago
- efd5df9 Issue #21947: handle generator-iterator objects in dis by Nick Coghlan · 11 years ago
- d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
- 0bce6e7 whatsnew: expand 'dis' entry. by R David Murray · 12 years ago
- 0e90e99 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 12 years ago
- 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 12 years ago
- 50c48b8 Close #17916: dis.Bytecode based replacement for distb by Nick Coghlan · 12 years ago
- 07155c9 Fix typo in updated dis docs by Nick Coghlan · 12 years ago
- 90b8e7d Close #19378: address flaws in the new dis module APIs by Nick Coghlan · 12 years ago
- 3cb26b7 merge with 3.3 by Georg Brandl · 12 years ago
- c96ef1f Closes #13026: fix documentation of MAKE_FUNCTION for 3.x. by Georg Brandl · 12 years ago
- 6e6c6ac #18796: improve documentation of the file argument of dis.show_code. Initial patch by Vajrasky Kok. by Ezio Melotti · 12 years ago
- e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 12 years ago
- b39fd0c Issue #11816: multiple improvements to the dis module by Nick Coghlan · 12 years ago
- 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 12 years ago
- a5c4309 Issue #16538: correctly describe MAKE_CLOSURE in docs. by Andrew Svetlov · 13 years ago
- 143d034 merge 3.2 by Benjamin Peterson · 13 years ago
- 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 13 years ago
- 60ee049 Issue #14349: Fix the doc of the MAKE_FUNCTION opcode in Doc/library/dis.rst to by Eli Bendersky · 13 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 14 years ago
- 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 14 years ago
- 4f707fd Separate source link from main text. by Raymond Hettinger · 15 years ago
- 1048094 Move source links to consistent location and remove wordy, big yellow boxes. by Raymond Hettinger · 15 years ago
- c58bde1 SET_LINENO was removed in 2.3 by Antoine Pitrou · 15 years ago
- 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 15 years ago
- 2379877 Fix documentation of dis.opmap direction. by Georg Brandl · 15 years ago
- ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 15 years ago
- e8814fb As per python-dev discussion with Eli, properly document and publish dis.show_code by Nick Coghlan · 15 years ago
- 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 15 years ago
- 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 15 years ago
- eae2da1 Issue 9147: Add dis.code_info() by Nick Coghlan · 15 years ago
- 4833e5b Remove the need for a "()" empty argument list after opcodes. by Georg Brandl · 15 years ago
- 19b7a87 Wrap and use the correct directive. by Georg Brandl · 15 years ago
- 5c8b54e Issue 6507: accept source strings directly in dis.dis(). Original patch by Daniel Urban by Nick Coghlan · 15 years ago
- 8315fd1 Some people have mistaken Python bytecode as being stable and unchanging. In by Brett Cannon · 15 years ago