add DEF_BOUND constant

This commit is contained in:
Jeremy Hylton 2001-03-22 23:10:44 +00:00
parent 14b90a498f
commit 8bf395f1aa
1 changed files with 1 additions and 0 deletions

View File

@ -59,6 +59,7 @@ init_symtable(void)
PyModule_AddIntConstant(m, "DEF_FREE_GLOBAL", DEF_FREE_GLOBAL);
PyModule_AddIntConstant(m, "DEF_FREE_CLASS", DEF_FREE_CLASS);
PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT);
PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND);
PyModule_AddIntConstant(m, "TYPE_FUNCTION", TYPE_FUNCTION);
PyModule_AddIntConstant(m, "TYPE_CLASS", TYPE_CLASS);