COMMITS
/ Objects/frameobject.c April 8, 2022
M
Add new PyFrame_GetLasti C-API function (GH-32413)
Mark Shannon committed
April 7, 2022
B
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher committed
April 5, 2022
I
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel committed
I
bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)
Irit Katriel committed
April 1, 2022
I
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel committed
March 31, 2022
M
bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)
Mark Shannon committed
I
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH-32115)
Irit Katriel committed
March 25, 2022
M
bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH-32055)
Mark Shannon committed
March 22, 2022
M
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon committed
March 21, 2022
B
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher committed
March 18, 2022
V
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Victor Stinner committed
February 25, 2022
V
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner committed
V
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner committed
February 8, 2022
February 7, 2022
V
bpo-46670: Remove unused get_frame_state() function (GH-31177)
Victor Stinner committed
February 3, 2022
M
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon committed
February 2, 2022
M
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon committed
January 20, 2022
M
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon 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
December 15, 2021
M
bpo-46039: Split yield from in two (GH-30035)
Mark Shannon committed
December 14, 2021
I
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel committed
December 8, 2021
A
bpo-45813: Drop redundant assertion from frame.clear() (GH-29990)
Andrew Svetlov committed
November 29, 2021
M
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon committed
November 23, 2021
October 28, 2021
M
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon committed
October 21, 2021
C
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes committed
October 6, 2021
C
Fix typos in the Objects directory (GH-28766)
Christian Clauss committed
October 4, 2021
S
bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)
Serhiy Storchaka 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
August 25, 2021
M
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon committed
August 9, 2021
I
bpo-44872: use new trashcan macros in framobject.c (#27683)
Irit Katriel committed
July 26, 2021
M
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon committed
June 21, 2021
G
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum committed
June 18, 2021
M
bpo-44032: Move pointer to code object from frame-object to frame specials array. (GH-26771)
Mark Shannon committed
June 17, 2021
June 15, 2021
E
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow committed
June 9, 2021
E
bpo-43693: Do not check co_cell2arg if a non-cell offset. (gh-26626)
Eric Snow committed
June 8, 2021
E
bpo-43693: Un-revert commit f3fa63e. (#26609)
Eric Snow committed
June 7, 2021
E
E
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow committed
June 4, 2021
June 3, 2021
May 26, 2021
E
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow committed
May 21, 2021
P
bpo-44032: Fix downcast conversion in frameobject.c (GH-26291)
Pablo Galindo committed
M
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon committed
May 7, 2021
M
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon committed
April 30, 2021
S
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower committed
April 29, 2021
R
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman committed