COMMITS
/ Python/ceval.c January 6, 2022
M
bpo-45923: Handle call events in bytecode (GH-30364)
Mark Shannon committed
P
bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)
penguin_wwy committed
January 5, 2022
B
bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)
Brandt Bucher committed
January 4, 2022
B
bpo-46009: Remove GEN_START (GH-30367)
Brandt Bucher committed
I
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
Irit Katriel committed
January 2, 2022
December 17, 2021
M
bpo-46072: Add top level stats struct (GH-30169)
Mark Shannon committed
I
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel committed
December 15, 2021
M
bpo-46072: Add --with-pystats configure option to simplify gathering of VM stats (GH-30116)
Mark Shannon committed
M
M
bpo-46039: Split yield from in two (GH-30035)
Mark Shannon committed
December 14, 2021
M
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon committed
I
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel committed
December 8, 2021
M
bpo-46009: Do not exhaust generator when send() method raises (GH-29986)
Mark Shannon committed
December 7, 2021
E
bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)
Eric Snow committed
E
bpo-46008: Return void from _PyEval_InitState(). (gh-29970)
Eric Snow committed
M
Fix leak when an exception is raised during generator creation. (GH-29960)
Mark Shannon committed
December 6, 2021
M
bpo-45963: Make space for the InterpreterFrame of a generator in that generator. (GH-29891)
Mark Shannon committed
December 3, 2021
D
bpo-45885: Specialize COMPARE_OP (GH-29734)
Dennis Sweeney committed
December 1, 2021
M
bpo-45753: Interpreter internal tweaks (GH-29575)
Mark Shannon committed
November 30, 2021
November 29, 2021
M
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon committed
November 25, 2021
November 23, 2021
November 22, 2021
November 19, 2021
M
bpo-45709: Fix tracing when exception is handled. (GH-29638)
Mark Shannon committed
D
bpo-45609: Specialize STORE_SUBSCR (GH-29242)
Dennis Sweeney committed
November 18, 2021
M
bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (GH-29592)
Mark Shannon committed
D
bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)
Dong-hee Na committed
November 16, 2021
B
bpo-45636: Simplify BINARY_OP (GH-29565)
Brandt Bucher committed
M
bpo-45753: Make recursion checks more efficient. (GH-29524)
Mark Shannon committed
November 15, 2021
B
bpo-45636: Remove the old %-formatting fast-path (GH-29532)
Brandt Bucher committed
November 12, 2021
I
bpo-45711: assert that the type of exc_info is redundant (GH-29518)
Irit Katriel committed
November 11, 2021
B
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher committed
November 10, 2021
I
bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)
Irit Katriel committed
October 28, 2021
M
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon committed
K
bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)
Ken Jin committed
M
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon committed
October 27, 2021
M
Don't make a call at the C level when calling bound-methods from Python code. (GH-29238)
Mark Shannon committed
B
bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)
Brandt Bucher committed
October 20, 2021
M
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon committed
M
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon committed
October 19, 2021
K
bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)
Ken Jin committed
K
Record cache hits for BINARY_SUBSCR specializations (GH-29060)
Ken Jin committed
October 18, 2021
V
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner committed
M
bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)
Mark Shannon committed
October 15, 2021
V
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner committed
October 14, 2021
D
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney committed
October 13, 2021
B
Ensure that instruction cases are self-contained (GH-28938)
Brandt Bucher committed