summaryrefslogtreecommitdiffstats
path: root/Python/frame.c
Commit message (Expand)AuthorAgeFilesLines
* gh-118272: set stacktop to 0 before freeing contents, to avoid access to inva...Irit Katriel2024-05-011-2/+3
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-301-5/+12
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-12/+0
* GH-116098: Remove dead frame object creation code (GH-116687)Tian Gao2024-03-121-18/+9
* Remove unused Py_XDECREF from _PyFrame_ClearExceptCode (GH-106158)Anders Kaseorg2024-02-011-1/+0
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-1/+1
* gh-107149: Make PyUnstable_ExecutableKinds public (#108440)Victor Stinner2023-08-311-6/+6
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-171-1/+1
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-7/+15
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-2/+2
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-051-1/+17
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-281-6/+3
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-2/+2
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-091-4/+1
* GH-99729: Unlink frames before clearing them (GH-100030)Brandt Bucher2022-12-061-0/+3
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-1/+3
* GH-97002: Prevent `_PyInterpreterFrame`s from backing more than one `PyFrameO...Brandt Bucher2022-10-061-6/+23
* GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...Brandt Bucher2022-10-051-0/+7
* GH-97752: Clear the `previous` member of newly-created generator/coroutine fr...Brandt Bucher2022-10-031-0/+3
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-251-2/+2
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-011-2/+6
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-201-16/+0
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-191-1/+1
* Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)Mark Shannon2022-05-181-0/+2
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-071-0/+7
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-221-4/+7
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-251-10/+10
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-031-0/+2
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-0/+2
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-281-1/+14
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-12/+7
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-12/+6
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-23/+15
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-4/+2
* bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...Mark Shannon2021-11-221-0/+3
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-251-20/+12
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-0/+135