summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-06-18 10:00:29 (GMT)
committerGitHub <noreply@github.com>2021-06-18 10:00:29 (GMT)
commit0982ded179f280176868c1c4eccf77bf70687816 (patch)
tree961c9e5ce60cffb79260fbc5a5b8ff321f68cc1b /Include/cpython
parent7f01f77f8fabcfd7ddb5d99f12d6fc99af9af384 (diff)
downloadcpython-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.h1
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 */