summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorRichard Jones <richard@commonground.com.au>2006-05-23 18:28:17 (GMT)
committerRichard Jones <richard@commonground.com.au>2006-05-23 18:28:17 (GMT)
commitcebbefc98dd7b30ae8c5f7640951e247ece49991 (patch)
tree5e84bc9757e33993b0fc3e75596d292e0945d585 /Include
parent69c347655d403b361e7c91b9db9c5cac88715bac (diff)
downloadcpython-cebbefc98dd7b30ae8c5f7640951e247ece49991.zip
cpython-cebbefc98dd7b30ae8c5f7640951e247ece49991.tar.gz
cpython-cebbefc98dd7b30ae8c5f7640951e247ece49991.tar.bz2
Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.
Diffstat (limited to 'Include')
-rw-r--r--Include/frameobject.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index 7dc14e3..1e3a01e 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -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;