From 7dd854725b0ecdd47b3818fe12ce2a3f9948f3ce Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 17 Aug 2008 17:13:26 +0000 Subject: get the symtable module back in working order - Fix broken functions - Add (hopefully) extensive tests - Modernize a little --- Modules/symtablemodule.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Modules/symtablemodule.c') diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c index c90d7650a1..53e987e924 100644 --- a/Modules/symtablemodule.c +++ b/Modules/symtablemodule.c @@ -81,4 +81,7 @@ init_symtable(void) PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT); PyModule_AddIntConstant(m, "FREE", FREE); PyModule_AddIntConstant(m, "CELL", CELL); + + PyModule_AddIntConstant(m, "SCOPE_OFF", SCOPE_OFF); + PyModule_AddIntConstant(m, "SCOPE_MASK", SCOPE_MASK); } -- cgit v1.2.1