get the symtable module back in working order
- Fix broken functions
- Add (hopefully) extensive tests
- Modernize a little
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index c90d765..53e987e 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -81,4 +81,7 @@
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);
}