summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dis.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-251-1/+1
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-241-4/+4
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-1/+1
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-27/+35
* bpo-12458: Fix line numbers for multiline expressions. (GH-8774)Serhiy Storchaka2018-09-171-2/+6
* bpo-33041: Rework compiling an "async for" loop. (#6142)Serhiy Storchaka2018-03-231-2/+1
* bpo-32970: Improve disassembly of the MAKE_FUNCTION instruction. (GH-5937)Serhiy Storchaka2018-03-111-4/+4
* bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...Serhiy Storchaka2018-02-221-124/+123
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-301-17/+21
* bpo-24340: Fix estimation of the code stack size. (#5076)Serhiy Storchaka2018-01-091-8/+8
* bpo-31183: `dis` now handles coroutines & async generators (GH-3077)syncosmic2017-08-181-5/+27
* bpo-11822: Improve disassembly to show embedded code objects. (#1844)Serhiy Storchaka2017-06-111-7/+82
* bpo-22352: Adjust widths in the output of dis.dis() for large line numbers an...Serhiy Storchaka2017-04-191-1/+51
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28317: The disassembler now decodes FORMAT_VALUE argument.Serhiy Storchaka2016-10-081-0/+24
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-18/+18
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-1/+1
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-0/+33
* Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-121-41/+39
* Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.Serhiy Storchaka2016-05-241-262/+262
* Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-231-2/+50
* Issue #26733: Fixed formatting line numbers in test_dis.Serhiy Storchaka2016-04-121-11/+11
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-121-13/+33
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-1/+1
* merge 3.4 (#23048)Benjamin Peterson2014-12-131-3/+4
|\
| * pop the loop block even for infinite while loops (closes #23048)Benjamin Peterson2014-12-131-3/+4
* | Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an i...Antoine Pitrou2014-09-181-88/+84
* | Issue #21947: handle generator-iterator objects in disNick Coghlan2014-07-251-0/+8
|/
* Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had beenZachary Ware2013-12-261-34/+31
|\
| * Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had beenZachary Ware2013-12-261-33/+30
* | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-6/+8
|\ \ | |/
| * Normalize whitespaceZachary Ware2013-12-081-1/+1
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-6/+8
* | Close #17916: dis.Bytecode based replacement for distbNick Coghlan2013-11-221-0/+66
* | Remove incorrect comment from dis testsNick Coghlan2013-11-061-1/+0
* | Close #19378: address flaws in the new dis module APIsNick Coghlan2013-11-061-44/+83
* | merge 3.3 (#19117)Benjamin Peterson2013-09-291-4/+0
|\ \ | |/
| * fix duplicate test names in test_dis (closes #19117)Benjamin Peterson2013-09-291-4/+0
* | Issue #11816: multiple improvements to the dis moduleNick Coghlan2013-05-061-33/+306
|/
* Issue #11823: disassembly now shows argument counts on calls with keyword argsAlexander Belopolsky2012-06-071-3/+3
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-12/+13
|\
| * Another test_dis dict order dependency.Georg Brandl2012-02-201-6/+6
| * Fix test_dis dependency on dict order.Georg Brandl2012-02-201-6/+7
* | PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-251-0/+1
* | excise the remains of STOP_CODE, which hasn't done anything useful for yearsBenjamin Peterson2011-07-181-1/+1
* | PyErr_Print can leave sys.last_traceback hanging around; kill itBenjamin Peterson2011-03-151-10/+8
* | should use 'is' hereBenjamin Peterson2011-03-151-1/+1
* | improve dis test coverage (closes #11559)Benjamin Peterson2011-03-151-8/+98
|/
* #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ...Ezio Melotti2010-12-011-2/+2
* #9964: Fix failure of test_dis under -OO.Georg Brandl2010-10-141-13/+13