diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-21 23:03:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-21 23:03:36 (GMT) |
commit | d9920c255d4a88a70ff9bcfc21f273f5e42fff4e (patch) | |
tree | 981c07dc6aaeaedd31d9b672bc54856d8f7e19e4 /Include | |
parent | f67caf8523341a7a8430c2065d0e6fa7898782da (diff) | |
download | cpython-d9920c255d4a88a70ff9bcfc21f273f5e42fff4e.zip cpython-d9920c255d4a88a70ff9bcfc21f273f5e42fff4e.tar.gz cpython-d9920c255d4a88a70ff9bcfc21f273f5e42fff4e.tar.bz2 |
remove tmpname support since it's no longer used
Diffstat (limited to 'Include')
-rw-r--r-- | Include/symtable.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/symtable.h b/Include/symtable.h index 32b4ebf..29cd846 100644 --- a/Include/symtable.h +++ b/Include/symtable.h @@ -19,7 +19,6 @@ struct symtable { PyObject *st_global; /* borrowed ref to MODULE in st_symbols */ int st_nblocks; /* number of blocks */ PyObject *st_private; /* name of current class or NULL */ - int st_tmpname; /* temporary name counter */ PyFutureFeatures *st_future; /* module's future features */ }; @@ -43,7 +42,6 @@ typedef struct _symtable_entry { an argument */ int ste_lineno; /* first line of block */ int ste_opt_lineno; /* lineno of last exec or import * */ - int ste_tmpname; /* counter for listcomp temp vars */ struct symtable *ste_table; } PySTEntryObject; |