We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd37dac commit 4345476Copy full SHA for 4345476
1 file changed
Modules/symtablemodule.c
@@ -65,6 +65,10 @@ init_symtable(void)
65
PyModule_AddIntConstant(m, "TYPE_CLASS", TYPE_CLASS);
66
PyModule_AddIntConstant(m, "TYPE_MODULE", TYPE_MODULE);
67
68
+ PyModule_AddIntConstant(m, "OPT_IMPORT_STAR", OPT_IMPORT_STAR);
69
+ PyModule_AddIntConstant(m, "OPT_EXEC", OPT_EXEC);
70
+ PyModule_AddIntConstant(m, "OPT_BARE_EXEC", OPT_BARE_EXEC);
71
+
72
PyModule_AddIntConstant(m, "LOCAL", LOCAL);
73
PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT);
74
PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT);
0 commit comments