summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-3/+7
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-3/+5
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-1/+0
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-151-1/+7
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-1/+4
* bpo-45813: Drop redundant assertion from frame.clear() (GH-29990)Andrew Svetlov2021-12-081-1/+4
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-115/+26
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-8/+24
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-281-6/+5
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-6/+17
* Fix typos in the Objects directory (GH-28766)Christian Clauss2021-10-061-1/+1
* bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)Serhiy Storchaka2021-10-041-2/+2
* bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...Serhiy Storchaka2021-10-031-2/+2
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-251-17/+7
* bpo-44872: use new trashcan macros in framobject.c (#27683)Irit Katriel2021-08-091-2/+2
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-160/+136
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-211-2/+2
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-16/+23
* Do not clear globals or builtins when calling clear() on a frame object. Reve...Mark Shannon2021-06-171-5/+4
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-78/+13
* bpo-43693: Do not check co_cell2arg if a non-cell offset. (gh-26626)Eric Snow2021-06-091-2/+5
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-13/+116
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-115/+13
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-13/+115
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-146/+79
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-79/+146
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-146/+79
* bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow2021-05-261-15/+9
* bpo-44032: Fix downcast conversion in frameobject.c (GH-26291)Pablo Galindo2021-05-211-1/+1
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-211-130/+137
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-164/+163
* bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)Steve Dower2021-04-301-1/+1
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-291-1/+1
* bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...Mark Shannon2021-04-291-1/+7
* bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner2021-04-211-1/+2
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-10/+19
* bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)Victor Stinner2021-03-181-1/+1
* bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner2021-02-201-15/+4
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-191-5/+5
* bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)Victor Stinner2021-02-181-51/+43
* bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)Mark Shannon2021-02-011-29/+22
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-291-52/+33
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-051-7/+5
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-121-25/+11
* bpo-40941: Unify implicit and explicit state in the frame and generator objec...Mark Shannon2020-07-171-45/+45
* bpo-40521: Cleanup code of free lists (GH-21082)Victor Stinner2020-06-231-6/+12
* Restrict co_code to be under INT_MAX in codeobject (GH-20628)Ammar Askar2020-06-101-3/+3
* bpo-40887: Don't use finalized free lists (GH-20700)Victor Stinner2020-06-081-0/+12
* bpo-40521: Make frame free list per-interpreter (GH-20638)Victor Stinner2020-06-041-49/+37
* Fix MSVC warning in frameobject.c (GH-20590)Ammar Askar2020-06-041-1/+3