summaryrefslogtreecommitdiff
path: root/Modules/symtablemodule.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-09-06 06:51:57 +0000
committerGeorg Brandl <georg@python.org>2006-09-06 06:51:57 +0000
commit9a1e3897d7462eecdb69109bcc675a88981b4161 (patch)
treed512d90b1e7a26e5edca36a6951183101433b7fd /Modules/symtablemodule.c
parent4b606587eaa5b3f207bbd0013d554e6c747c4de4 (diff)
downloadcpython-9a1e3897d7462eecdb69109bcc675a88981b4161.tar.gz
Patch #1550800: make exec a function.
Diffstat (limited to 'Modules/symtablemodule.c')
-rw-r--r--Modules/symtablemodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index c90d7650a1..95edfea3f3 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -73,8 +73,7 @@ init_symtable(void)
PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock);
PyModule_AddIntConstant(m, "OPT_IMPORT_STAR", OPT_IMPORT_STAR);
- PyModule_AddIntConstant(m, "OPT_EXEC", OPT_EXEC);
- PyModule_AddIntConstant(m, "OPT_BARE_EXEC", OPT_BARE_EXEC);
+ PyModule_AddIntConstant(m, "OPT_TOPLEVEL", OPT_TOPLEVEL);
PyModule_AddIntConstant(m, "LOCAL", LOCAL);
PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT);