https://github.com/python/cpython/commit/273c993b06ccb4dd30ebcf5708a7f9a26bcd98be commit: 273c993b06ccb4dd30ebcf5708a7f9a26bcd98be branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2024-07-04T17:52:03Z summary:
[3.13] gh-106597: Remove unnecessary CFrame offsets (GH-121369) (#121370) gh-106597: Remove unnecessary CFrame offsets (GH-121369) (cherry picked from commit f5c8d67de6c68bea2860d5d96af747c5e95dbf22) Co-authored-by: Gabriele N. Tornetta <[email protected]> files: M Include/internal/pycore_runtime.h diff --git a/Include/internal/pycore_runtime.h b/Include/internal/pycore_runtime.h index bc67377a89c17f..d4ffd977940a02 100644 --- a/Include/internal/pycore_runtime.h +++ b/Include/internal/pycore_runtime.h @@ -98,13 +98,6 @@ typedef struct _Py_DebugOffsets { uint64_t owner; } interpreter_frame; - // CFrame offset; - struct _cframe { - uint64_t size; - uint64_t current_frame; - uint64_t previous; - } cframe; - // Code object offset; struct _code_object { uint64_t size; _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
