diff options
author | Mark Shannon <mark@hotpy.org> | 2021-06-18 10:00:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-18 10:00:29 (GMT) |
commit | 0982ded179f280176868c1c4eccf77bf70687816 (patch) | |
tree | 961c9e5ce60cffb79260fbc5a5b8ff321f68cc1b /Include/cpython | |
parent | 7f01f77f8fabcfd7ddb5d99f12d6fc99af9af384 (diff) | |
download | cpython-0982ded179f280176868c1c4eccf77bf70687816.zip cpython-0982ded179f280176868c1c4eccf77bf70687816.tar.gz cpython-0982ded179f280176868c1c4eccf77bf70687816.tar.bz2 |
bpo-44032: Move pointer to code object from frame-object to frame specials array. (GH-26771)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/frameobject.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/cpython/frameobject.h b/Include/cpython/frameobject.h index fc20bc2..2bf458c 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 */ |