Remove st_nested_scopes from struct symtable,

because nested scopes are always enabled.

(Accidentally checked in one small change along this path yesterday,
wreaking havoc in the Windows build.)
This commit is contained in:
Jeremy Hylton 2001-08-11 21:51:24 +00:00
parent d5d8fc559c
commit 1abf610b15
2 changed files with 45 additions and 130 deletions

View file

@ -20,7 +20,6 @@ struct _symtable_entry;
struct symtable {
int st_pass; /* pass == 1 or 2 */
int st_nested_scopes; /* true if nested scopes are enabled */
char *st_filename; /* name of file being compiled */
struct _symtable_entry *st_cur; /* current symbol table entry */
PyObject *st_symbols; /* dictionary of symbol table entries */