• Home
  • Raw
  • Download

Lines Matching refs:PyModule_AddIntConstant

61     PyModule_AddIntConstant(m, "USE", USE);  in init_symtable()
62 PyModule_AddIntConstant(m, "DEF_GLOBAL", DEF_GLOBAL); in init_symtable()
63 PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL); in init_symtable()
64 PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM); in init_symtable()
65 PyModule_AddIntConstant(m, "DEF_FREE", DEF_FREE); in init_symtable()
66 PyModule_AddIntConstant(m, "DEF_FREE_CLASS", DEF_FREE_CLASS); in init_symtable()
67 PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT); in init_symtable()
68 PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND); in init_symtable()
70 PyModule_AddIntConstant(m, "TYPE_FUNCTION", FunctionBlock); in init_symtable()
71 PyModule_AddIntConstant(m, "TYPE_CLASS", ClassBlock); in init_symtable()
72 PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock); in init_symtable()
74 PyModule_AddIntConstant(m, "OPT_IMPORT_STAR", OPT_IMPORT_STAR); in init_symtable()
75 PyModule_AddIntConstant(m, "OPT_EXEC", OPT_EXEC); in init_symtable()
76 PyModule_AddIntConstant(m, "OPT_BARE_EXEC", OPT_BARE_EXEC); in init_symtable()
78 PyModule_AddIntConstant(m, "LOCAL", LOCAL); in init_symtable()
79 PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT); in init_symtable()
80 PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT); in init_symtable()
81 PyModule_AddIntConstant(m, "FREE", FREE); in init_symtable()
82 PyModule_AddIntConstant(m, "CELL", CELL); in init_symtable()
84 PyModule_AddIntConstant(m, "SCOPE_OFF", SCOPE_OFF); in init_symtable()
85 PyModule_AddIntConstant(m, "SCOPE_MASK", SCOPE_MASK); in init_symtable()