summaryrefslogtreecommitdiffstats
path: root/Python/frame.c
Commit message (Expand)AuthorAgeFilesLines
* [3.11] GH-99729: Unlink frames before clearing them (#100047)Brandt Bucher2022-12-061-0/+3
* [3.11] GH-97002: Prevent _PyInterpreterFrames from backing more than one PyFr...Miss Islington (bot)2022-10-071-6/+23
* [3.11] GH-97779: Ensure that *all* frame objects are backed by "complete" fra...Miss Islington (bot)2022-10-051-0/+7
* [3.11] GH-97752: Clear the previous member of newly-created generator/corouti...Miss Islington (bot)2022-10-041-0/+3
* [3.11] GH-94262: Don't create frame objects for frames that aren't yet comple...Miss Islington (bot)2022-07-041-2/+6
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938) (#94000)Victor Stinner2022-06-201-1/+1
* 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