Home
last modified time | relevance | path

Searched refs:GLOBAL_IMPLICIT (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dsymtable.py6 SCOPE_OFF, SCOPE_MASK, FREE, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL, LOCAL)
144 glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
190 return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT))
/external/python/cpython2/Include/
Dsymtable.h82 #define GLOBAL_IMPLICIT 3 macro
/external/python/cpython2/Modules/
Dsymtablemodule.c80 PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT); in init_symtable()
/external/python/cpython2/Python/
Dsymtable.c422 SET_SCOPE(dict, name, GLOBAL_IMPLICIT); in analyze_name()
428 SET_SCOPE(dict, name, GLOBAL_IMPLICIT); in analyze_name()
Dcompile.c2342 case GLOBAL_IMPLICIT: in compiler_nameop()