summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-08-11 21:51:24 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-08-11 21:51:24 (GMT)
commit1abf610b154cc727f219fd52b2c1f868584a6e7b (patch)
tree2eaad0eef1d3feb8f776e9debfb0f1384a6c14c3 /Include
parentd5d8fc559ca3dc0df105fdc5d535b2d67ab235c3 (diff)
downloadcpython-1abf610b154cc727f219fd52b2c1f868584a6e7b.zip
cpython-1abf610b154cc727f219fd52b2c1f868584a6e7b.tar.gz
cpython-1abf610b154cc727f219fd52b2c1f868584a6e7b.tar.bz2
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.)
Diffstat (limited to 'Include')
-rw-r--r--Include/symtable.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/symtable.h b/Include/symtable.h
index 9ceecf0..8bfe9aa 100644
--- a/Include/symtable.h
+++ b/Include/symtable.h
@@ -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 */