From 2a42f7a248a1d4058d2363a4c3551fa1415bd76f Mon Sep 17 00:00:00 2001 From: "Gabriele N. Tornetta" Date: Thu, 4 Jul 2024 17:59:51 +0100 Subject: [PATCH] gh-106597: Remove unnecessary CFrame offsets The PyCFrame structure has been removed in 3.13 therefore its offsets are no longer available to be exported via the debug offsets structure. --- Include/internal/pycore_runtime.h | 7 ------- 1 file changed, 7 deletions(-) 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;