diff options
author | Guido van Rossum <guido@python.org> | 1995-07-18 14:21:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-07-18 14:21:06 (GMT) |
commit | 884afd654a79bcb836afcdb5c953a627fd45c4c7 (patch) | |
tree | eb0d6c872c09cad854aa168829d9feda2a4df4ea /Include/frameobject.h | |
parent | e15dee5e3cf863657f47974cb51721ef3cca2ff8 (diff) | |
download | cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.zip cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.gz cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.bz2 |
keyword arguments and faster function calls
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r-- | Include/frameobject.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index e0c94e0..a38a85d 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -45,7 +45,6 @@ typedef struct _frame { PyObject *f_locals; /* local symbol table (PyDictObject) */ PyObject *f_owner; /* owner (e.g. class or module) or NULL */ PyObject *f_fastlocals; /* fast local variables (PyListObject) */ - PyObject *f_localmap; /* local variable names (PyDictObject) */ PyObject **f_valuestack; /* malloc'ed array */ PyTryBlock *f_blockstack; /* malloc'ed array */ int f_nvalues; /* size of f_valuestack */ |