From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:52:03 +0000 (+0200) Subject: [3.13] gh-106597: Remove unnecessary CFrame offsets (GH-121369) (#121370) X-Git-Tag: v3.13.0b4~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=273c993b06ccb4dd30ebcf5708a7f9a26bcd98be;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Include/internal/pycore_runtime.h b/Include/internal/pycore_runtime.h index bc67377a89c1..d4ffd977940a 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;