mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.
This commit is contained in:
parent
69c347655d
commit
cebbefc98d
4 changed files with 54 additions and 55 deletions
|
@ -36,10 +36,6 @@ typedef struct _frame {
|
|||
in this scope */
|
||||
int f_iblock; /* index in f_blockstack */
|
||||
PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
|
||||
int f_nlocals; /* number of locals */
|
||||
int f_ncells;
|
||||
int f_nfreevars;
|
||||
int f_stacksize; /* size of value stack */
|
||||
PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */
|
||||
} PyFrameObject;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue