Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsymtable.h71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT) macro
/external/python/cpython2/Lib/
Dsymtable.py5 DEF_IMPORT, DEF_BOUND, OPT_IMPORT_STAR, OPT_EXEC, OPT_BARE_EXEC,
196 return bool(self.__flags & DEF_BOUND)
/external/python/cpython2/Modules/
Dsymtablemodule.c68 PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND); in init_symtable()
/external/python/cpython2/Python/
Dsymtable.c396 if (flags & DEF_BOUND) { in analyze_name()
568 PyInt_AS_LONG(o) & (DEF_BOUND | DEF_GLOBAL)) { in update_symbols()