COMMITS
/ Python/ceval.c October 11, 2022
G
Fix some incorrect indentation around the main switch (#98177)
Guido van Rossum committed
October 7, 2022
C
GH-91052: Add C API for watching dictionaries (GH-31787)
Carl Meyer committed
October 5, 2022
M
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-96510)
Mark Shannon committed
October 4, 2022
V
gh-97670: Remove sys.getdxp() and analyze_dxp.py script (#97671)
Victor Stinner committed
September 22, 2022
B
GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97003)
Brandt Bucher committed
September 20, 2022
S
gh-96711: Enhance SystemError message upon Invalid opcode (#96712)
serge-sans-paille committed
September 19, 2022
B
GH-96864: Check for error between line and opcode events (GH-96880)
Brandt Bucher committed
September 15, 2022
A
GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)
adphrost committed
N
gh-96751: Remove dead code from `CALL_FUNCTION_EX` opcode (GH-96752)
Nikita Sobolev committed
September 14, 2022
K
ceval: Use _PyTuple_FromArraySteal in BUILD_TUPLE (GH-96516)
Kevin Modzelewski committed
September 13, 2022
September 10, 2022
M
GH-96678: Fix undefined behavior in ceval.c (#96708)
Mark Shannon committed
September 9, 2022
B
Replace ad-hoc labels with JUMP_TO_INSTRUCTION (GH-96634)
Brandt Bucher committed
September 8, 2022
M
GH-96636: Remove all uses of NOTRACE_DISPATCH (GH-96643)
Mark Shannon committed
I
gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM (GH-96654)
Itamar Ostricher committed
September 7, 2022
B
GH-91432: Remove the iterator_exhausted_no_error label (GH-96517)
Brandt Bucher committed
September 6, 2022
K
GH-96572: fix use after free in trace refs build mode (#96618)
Kumar Aditya committed
September 4, 2022
D
ceval.c's GETITEM should have asserts, not set exceptions (GH-96518)
Dennis Sweeney committed
September 1, 2022
I
gh-93554: Conditional jump opcodes only jump forward (GH-96318)
Irit Katriel committed
August 30, 2022
B
Remove the binary_subscr_dict_error label (GH-96443)
Brandt Bucher committed
August 25, 2022
M
GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)
Mark Shannon committed
August 24, 2022
P
GH-93503: Add thread-specific APIs to set profiling and tracing functions in the C-API (#93504)
Pablo Galindo Salgado committed
M
GH-96177: Move GIL and eval breaker code out of ceval.c into ceval_gil.c. (GH-96204)
Mark Shannon committed
August 19, 2022
B
GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)
Brandt Bucher committed
August 17, 2022
K
August 11, 2022
Z
Update _PyEval_AddPendingCall comment (#95817)
zhanpon committed
August 1, 2022
M
GH-95245: Store object values and dict pointers in single tagged pointer. (GH-95278)
Mark Shannon committed
July 28, 2022
M
GH-90081: Run python tracers at full speed (GH-95328)
Mark Shannon committed
July 22, 2022
B
GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)
Brandt Bucher committed
July 18, 2022
July 9, 2022
B
GH-93252: Fix error handling for failed Python calls (GH-94693)
Brandt Bucher committed
July 8, 2022
B
gh-94215: Fix error handling for line-tracing events (GH-94681)
Brandt Bucher committed
July 5, 2022
P
gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace (GH-94511)
Pablo Galindo Salgado committed
June 30, 2022
June 27, 2022
M
GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)
Mark Shannon committed
June 21, 2022
M
GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime. (GH-93843)
Mark Shannon committed
D
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney committed
June 20, 2022
M
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon committed
June 19, 2022
V
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner committed
June 17, 2022
K
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin committed
V
gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)
Victor Stinner committed
June 16, 2022
K
Fix BINARY_SUBSCR_GETITEM stats (GH-93903)
Ken Jin committed
June 14, 2022
K
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin committed
M
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Mark Shannon committed
June 7, 2022
K
Fix MSVC compiler warnings in ceval.c (#93569)
Ken Jin committed
M
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon committed
May 31, 2022
D
gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH-93144)
Dennis Sweeney committed
M
GH-93354: Use exponential backoff to avoid excessive specialization attempts. (GH-93355)
Mark Shannon committed
May 27, 2022
E
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
Eric Snow committed