COMMITS
/ Python/ceval.c 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
P
bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)
Pablo Galindo Salgado committed
M
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon committed
V
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner committed
October 12, 2021
V
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner committed
October 11, 2021
V
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner committed
M
Restore PEP 523 functionality. (GH-28871)
Mark Shannon committed
October 9, 2021
P
bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in ceval.c (GH-28836)
Pablo Galindo Salgado committed
P
bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)
Pablo Galindo Salgado committed
October 6, 2021
M
M
Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)
Mark Shannon committed
October 5, 2021
M
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch. (GH-28723)
Mark Shannon committed
October 4, 2021
P
Fix compiler warning in ceval.c regarding signed comparison (GH-28716)
Pablo Galindo Salgado committed
October 3, 2021
S
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the code unit (GH-28711)
Serhiy Storchaka committed