aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/frame.c
Commit message (Expand)AuthorAge
* gh-131173: Improve exception handling during take_ownership processing (#132620)Alper13 days
* gh-128421: Avoid TSAN warnings in `sys._current_frames()` (gh-131548)Sam Gross2025-03-24
* gh-131238: Move _Py_VISIT_STACKREF() to pycore_stackref.h (#131560)Victor Stinner2025-03-21
* gh-128421: Add locking to most frame object functions (gh-131479)Sam Gross2025-03-21
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-17
* GH-127705: Use `_PyStackRef`s in the default build. (GH-127875)Mark Shannon2025-03-10
* GH-128563: Add new frame owner type for interpreter entry frames (GH-129078)Mark Shannon2025-01-21
* Remove asserts that confuse `enum _framestate` with `enum _frameowner` (GH-12...Anders Kaseorg2025-01-02
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-04
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-24
* gh-123923: Defer refcounting for `f_executable` in `_PyInterpreterFrame` (#12...Sam Gross2024-09-12
* gh-117139: Garbage collector support for deferred refcounting (#122956)Sam Gross2024-08-15
* GH-120024: Use pointer for stack pointer (GH-121923)Mark Shannon2024-07-18
* gh-117139: Convert the evaluation stack to stack refs (#118450)Ken Jin2024-06-27
* gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)Irit Katriel2024-06-24
* gh-118272: set stacktop to 0 before freeing contents, to avoid access to inva...Irit Katriel2024-05-01
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-30
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-25
* GH-116098: Remove dead frame object creation code (GH-116687)Tian Gao2024-03-12
* Remove unused Py_XDECREF from _PyFrame_ClearExceptCode (GH-106158)Anders Kaseorg2024-02-01
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-26
* gh-107149: Make PyUnstable_ExecutableKinds public (#108440)Victor Stinner2023-08-31
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-17
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-14
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-18
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-05
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-28
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-23
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-09
* GH-99729: Unlink frames before clearing them (GH-100030)Brandt Bucher2022-12-06
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-10
* GH-97002: Prevent `_PyInterpreterFrame`s from backing more than one `PyFrameO...Brandt Bucher2022-10-07
* GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...Brandt Bucher2022-10-04
* GH-97752: Clear the `previous` member of newly-created generator/coroutine fr...Brandt Bucher2022-10-04
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-25
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-01
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-20
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-19
* Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)Mark Shannon2022-05-18
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-07
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-22
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-25
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-03
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-02
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-28
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-20
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-06
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-29
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-23
* bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...Mark Shannon2021-11-22