Searched refs:DEF_IMPORT (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Include/ |
D | symtable.h | 69 #define DEF_IMPORT 2<<5 /* assignment occurred via import */ macro 71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
|
/external/python/cpython3/Include/ |
D | symtable.h | 97 #define DEF_IMPORT 2<<6 /* assignment occurred via import */ macro 101 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
|
/external/python/cpython2/Lib/ |
D | symtable.py | 5 DEF_IMPORT, DEF_BOUND, OPT_IMPORT_STAR, OPT_EXEC, OPT_BARE_EXEC, 202 return bool(self.__flags & DEF_IMPORT)
|
/external/python/cpython2/Modules/ |
D | symtablemodule.c | 67 PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT); in init_symtable()
|
/external/python/cpython3/Lib/ |
D | symtable.py | 5 DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE, 214 return bool(self.__flags & DEF_IMPORT)
|
/external/python/cpython3/Modules/ |
D | symtablemodule.c | 104 PyModule_AddIntMacro(m, DEF_IMPORT); in PyInit__symtable()
|
/external/python/cpython2/Python/ |
D | symtable.c | 1424 int r = symtable_add_def(st, store_name, DEF_IMPORT); in symtable_visit_alias()
|
/external/python/cpython3/Python/ |
D | symtable.c | 1807 int r = symtable_add_def(st, store_name, DEF_IMPORT); in symtable_visit_alias()
|