Searched refs:DEF_BOUND (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | symtable.py | 5 DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE, 191 return bool(self.__flags & DEF_BOUND)
|
/external/python/cpython2/Lib/ |
D | symtable.py | 5 DEF_IMPORT, DEF_BOUND, OPT_IMPORT_STAR, OPT_EXEC, OPT_BARE_EXEC, 196 return bool(self.__flags & DEF_BOUND)
|
/external/python/cpython2/Include/ |
D | symtable.h | 71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT) macro
|
/external/python/cpython3/Include/ |
D | symtable.h | 96 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT) macro
|
/external/python/cpython2/Modules/ |
D | symtablemodule.c | 68 PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND); in init_symtable()
|
/external/python/cpython3/Modules/ |
D | symtablemodule.c | 92 PyModule_AddIntMacro(m, DEF_BOUND); in PyInit__symtable()
|
/external/python/cpython2/Python/ |
D | symtable.c | 398 if (flags & DEF_BOUND) { in analyze_name() 570 PyInt_AS_LONG(o) & (DEF_BOUND | DEF_GLOBAL)) { in update_symbols()
|
/external/python/cpython3/Python/ |
D | symtable.c | 505 if (flags & DEF_BOUND) { in analyze_name() 645 PyLong_AS_LONG(v) & (DEF_BOUND | DEF_GLOBAL)) { in update_symbols()
|