remove tmpname support since it's no longer used

This commit is contained in:
Benjamin Peterson 2009-06-21 23:03:36 +00:00
parent f67caf8523
commit d9920c255d
3 changed files with 0 additions and 30 deletions

View file

@ -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;