Home
last modified time | relevance | path

Searched refs:DEF_IMPORT (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_symtable.h101 #define DEF_IMPORT 2<<6 /* assignment occurred via import */ macro
105 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
/third_party/python/Lib/
Dsymtable.py5 DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE,
283 return bool(self.__flags & DEF_IMPORT)
/third_party/python/Modules/
Dsymtablemodule.c86 if (PyModule_AddIntMacro(m, DEF_IMPORT) < 0) return -1; in symtable_init_constants()
/third_party/python/Python/
Dsymtable.c1967 int r = symtable_add_def(st, store_name, DEF_IMPORT, LOCATION(a)); in symtable_visit_alias()