summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dis.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-46329: Streamline calling sequence a bit. (GH-31465)Mark Shannon2022-02-211-19/+19
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-181/+204
* bpo-46724: Fix dis support for overflow args (GH-31285)Saul Shanabrook2022-02-181-5/+28
* Remove offsets from expected output in test.test_dis (GH-31369)Mark Shannon2022-02-161-308/+360
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-281-190/+217
* bpo-46458: emit code for else of a try block immediately after the try body (...Irit Katriel2022-01-271-68/+60
* bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher2022-01-261-2/+2
* bpo-45578: add a test case for `dis.findlabels` (GH-30058)Nikita Sobolev2022-01-261-0/+10
* bpo-46422: use `dis.Positions` in `dis.Instruction` (GH-30716)Nikita Sobolev2022-01-241-10/+18
* bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)Irit Katriel2022-01-131-24/+32
* bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon2022-01-061-405/+475
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-48/+59
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-82/+76
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-141-26/+26
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-30/+22
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-52/+56
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-9/+9
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-101-89/+87
* bpo-45757: Fix bug where dis produced an incorrect oparg on EXTENDED_ARG befo...Irit Katriel2021-11-091-0/+21
* bpo-45578: add tests for `dis.distb` (GH-29332)Nikita Sobolev2021-11-031-0/+40
* Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon2021-10-061-2/+2
* bpo-45168: change dis output to omit missing values rather than replacing the...Irit Katriel2021-09-141-8/+8
* bpo-45017: move opcode-related logic from modulefinder to dis (GH-28246)Irit Katriel2021-09-091-0/+33
* bpo-43950: support positions for dis.Instructions created through dis.Bytecod...Batuhan Taskaya2021-09-031-0/+5
* bpo-45056: Remove trailing unused constants from co_consts (GH-28109)Inada Naoki2021-09-021-5/+1
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-091-60/+59
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-151-17/+32
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-071-1/+3
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-071-50/+44
* bpo-43950: include position in dis.Instruction (GH-27015)Batuhan Taskaya2021-07-041-188/+243
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-231-5/+5
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-21/+21
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-61/+70
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-70/+61
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-61/+70
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-20/+20
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-20/+20
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-041-20/+20
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-84/+101
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-301-1/+1
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-291-1/+1
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-18/+20
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-30/+30
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-131-1/+1
* bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)Mark Shannon2020-12-231-84/+85
* bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)Mark Shannon2020-12-211-37/+37
* bpo-42199: Fix bytecode_helper assertNotInBytecode (#23031)Max Bernstein2020-12-181-0/+19
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-7/+7
* bpo-42645: Make sure that return/break/continue are only traced once when exi...Mark Shannon2020-12-161-12/+4
* bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...Mark Shannon2020-12-151-66/+71