We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c63e6d commit 251ead8Copy full SHA for 251ead8
1 file changed
Include/frameobject.h
@@ -14,7 +14,7 @@ typedef struct {
14
} PyTryBlock;
15
16
typedef struct _frame {
17
- PyObject_HEAD
+ PyObject_VAR_HEAD
18
struct _frame *f_back; /* previous frame, or NULL */
19
PyCodeObject *f_code; /* code segment */
20
PyObject *f_builtins; /* builtin symbol table (PyDictObject) */
@@ -34,7 +34,6 @@ typedef struct _frame {
34
in this scope */
35
int f_iblock; /* index in f_blockstack */
36
PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
37
- int f_size; /* size of localsplus */
38
int f_nlocals; /* number of locals */
39
int f_ncells;
40
int f_nfreevars;
0 commit comments