index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_dis.py
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel
2022-04-05
1
-1/+2
*
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel
2022-04-01
1
-42/+43
*
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...
Irit Katriel
2022-03-31
1
-6/+6
*
Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...
Mark Shannon
2022-03-17
1
-185/+170
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
1
-148/+147
*
bpo-46841: Use inline caching for attribute accesses (GH-31640)
Brandt Bucher
2022-03-03
1
-1/+1
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
1
-123/+123
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
1
-172/+172
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-105/+105
*
bpo-46329: Streamline calling sequence a bit. (GH-31465)
Mark Shannon
2022-02-21
1
-19/+19
*
bpo-46329: Change calling sequence (again) (GH-31373)
Mark Shannon
2022-02-18
1
-181/+204
*
bpo-46724: Fix dis support for overflow args (GH-31285)
Saul Shanabrook
2022-02-18
1
-5/+28
*
Remove offsets from expected output in test.test_dis (GH-31369)
Mark Shannon
2022-02-16
1
-308/+360
*
bpo-46329: Split calls into precall and call instructions. (GH-30855)
Mark Shannon
2022-01-28
1
-190/+217
*
bpo-46458: emit code for else of a try block immediately after the try body (...
Irit Katriel
2022-01-27
1
-68/+60
*
bpo-46528: Simplify the VM's stack manipulations (GH-30902)
Brandt Bucher
2022-01-26
1
-2/+2
*
bpo-45578: add a test case for `dis.findlabels` (GH-30058)
Nikita Sobolev
2022-01-26
1
-0/+10
*
bpo-46422: use `dis.Positions` in `dis.Instruction` (GH-30716)
Nikita Sobolev
2022-01-24
1
-10/+18
*
bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)
Irit Katriel
2022-01-13
1
-24/+32
*
bpo-45923: Handle call events in bytecode (GH-30364)
Mark Shannon
2022-01-06
1
-405/+475
*
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
Irit Katriel
2022-01-04
1
-48/+59
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
1
-82/+76
*
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon
2021-12-14
1
-26/+26
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
1
-30/+22
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-52/+56
*
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher
2021-11-11
1
-9/+9
*
bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)
Irit Katriel
2021-11-10
1
-89/+87
*
bpo-45757: Fix bug where dis produced an incorrect oparg on EXTENDED_ARG befo...
Irit Katriel
2021-11-09
1
-0/+21
*
bpo-45578: add tests for `dis.distb` (GH-29332)
Nikita Sobolev
2021-11-03
1
-0/+40
*
Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)
Mark Shannon
2021-10-06
1
-2/+2
*
bpo-45168: change dis output to omit missing values rather than replacing the...
Irit Katriel
2021-09-14
1
-8/+8
*
bpo-45017: move opcode-related logic from modulefinder to dis (GH-28246)
Irit Katriel
2021-09-09
1
-0/+33
*
bpo-43950: support positions for dis.Instructions created through dis.Bytecod...
Batuhan Taskaya
2021-09-03
1
-0/+5
*
bpo-45056: Remove trailing unused constants from co_consts (GH-28109)
Inada Naoki
2021-09-02
1
-5/+1
*
bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...
Mark Shannon
2021-08-09
1
-60/+59
*
bpo-44626: Merge basic blocks earlier to enable better handling of exit block...
Mark Shannon
2021-07-15
1
-17/+32
*
bpo-43950: Add option to opt-out of PEP-657 (GH-27023)
Ammar Askar
2021-07-07
1
-1/+3
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
1
-50/+44
*
bpo-43950: include position in dis.Instruction (GH-27015)
Batuhan Taskaya
2021-07-04
1
-188/+243
*
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
Guido van Rossum
2021-06-23
1
-5/+5
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
1
-21/+21
*
bpo-43693: Un-revert commit f3fa63e. (#26609)
Eric Snow
2021-06-08
1
-61/+70
*
Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...
Pablo Galindo
2021-06-08
1
-70/+61
*
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...
Eric Snow
2021-06-07
1
-61/+70
*
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow
2021-06-07
1
-20/+20
*
bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...
Pablo Galindo
2021-06-04
1
-20/+20
*
bpo-43693: Compute deref offsets in compiler (gh-25152)
Mark Shannon
2021-06-04
1
-20/+20
*
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon
2021-05-07
1
-84/+101
*
bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)
Mark Shannon
2021-04-30
1
-1/+1
*
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
Mark Shannon
2021-04-29
1
-1/+1
[prev]
[next]