aboutsummaryrefslogtreecommitdiff
path: root/Objects/frameobject.c
AgeCommit message (Expand)Author
2021-10-28bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon
2021-10-21bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes
2021-10-06Fix typos in the Objects directory (GH-28766)Christian Clauss
2021-10-04bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)Serhiy Storchaka
2021-10-03bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...Serhiy Storchaka
2021-08-25bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon
2021-08-09bpo-44872: use new trashcan macros in framobject.c (#27683)Irit Katriel
2021-07-26bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon
2021-06-21bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum
2021-06-18bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon
2021-06-17Do not clear globals or builtins when calling clear() on a frame object. Reve...Mark Shannon
2021-06-15bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow
2021-06-09bpo-43693: Do not check co_cell2arg if a non-cell offset. (gh-26626)Eric Snow
2021-06-08 bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow
2021-06-08Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo
2021-06-07bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow
2021-06-07bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow
2021-06-04bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo
2021-06-03bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow
2021-05-26bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow
2021-05-21bpo-44032: Fix downcast conversion in frameobject.c (GH-26291)Pablo Galindo
2021-05-21bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon
2021-05-07bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon
2021-04-30bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)Steve Dower
2021-04-30bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman
2021-04-29bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...Mark Shannon
2021-04-22bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner
2021-04-01bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon
2021-03-18bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)Victor Stinner
2021-02-20bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner
2021-02-19bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner
2021-02-18bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)Victor Stinner
2021-02-01bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)Mark Shannon
2021-01-29bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon
2021-01-05bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon
2020-11-12bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon
2020-07-17bpo-40941: Unify implicit and explicit state in the frame and generator objec...Mark Shannon
2020-06-23bpo-40521: Cleanup code of free lists (GH-21082)Victor Stinner
2020-06-11Restrict co_code to be under INT_MAX in codeobject (GH-20628)Ammar Askar
2020-06-08bpo-40887: Don't use finalized free lists (GH-20700)Victor Stinner
2020-06-05bpo-40521: Make frame free list per-interpreter (GH-20638)Victor Stinner
2020-06-04Fix MSVC warning in frameobject.c (GH-20590)Ammar Askar
2020-05-05bpo-40521: Disable free lists in subinterpreters (GH-19937)Victor Stinner
2020-04-29bpo-40228: More robust frame.setlineno. (GH-19437)Mark Shannon
2020-04-29bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner
2020-04-29bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner
2020-04-29bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)Victor Stinner
2020-04-29bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)Victor Stinner
2020-04-28bpo-40421: Add PyFrame_GetCode() function (GH-19757)Victor Stinner
2020-04-28bpo-40421: Add pyframe.h header file (GH-19755)Victor Stinner