Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsymtable.h69 #define DEF_IMPORT 2<<5 /* assignment occurred via import */ macro
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
/external/python/cpython2/Lib/
Dsymtable.py5 DEF_IMPORT, DEF_BOUND, OPT_IMPORT_STAR, OPT_EXEC, OPT_BARE_EXEC,
202 return bool(self.__flags & DEF_IMPORT)
/external/python/cpython2/Modules/
Dsymtablemodule.c67 PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT); in init_symtable()
/external/python/cpython2/Python/
Dsymtable.c1418 int r = symtable_add_def(st, store_name, DEF_IMPORT); in symtable_visit_alias()