From 0982ded179f280176868c1c4eccf77bf70687816 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Fri, 18 Jun 2021 11:00:29 +0100 Subject: bpo-44032: Move pointer to code object from frame-object to frame specials array. (GH-26771) --- Include/cpython/frameobject.h | 1 - 1 file changed, 1 deletion(-) (limited to 'Include/cpython/frameobject.h') diff --git a/Include/cpython/frameobject.h b/Include/cpython/frameobject.h index fc20bc2ff8..2bf458cab3 100644 --- a/Include/cpython/frameobject.h +++ b/Include/cpython/frameobject.h @@ -22,7 +22,6 @@ typedef signed char PyFrameState; struct _frame { PyObject_HEAD struct _frame *f_back; /* previous frame, or NULL */ - PyCodeObject *f_code; /* code segment */ PyObject **f_valuestack; /* points after the last local */ PyObject *f_trace; /* Trace function */ /* Borrowed reference to a generator, or NULL */ -- cgit v1.2.1