Home
last modified time | relevance | path

Searched refs:GLOBAL_EXPLICIT (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))
193 return bool(self.__scope == GLOBAL_EXPLICIT)
/external/python/cpython2/Include/
Dsymtable.h81 #define GLOBAL_EXPLICIT 2 macro
/external/python/cpython2/Modules/
Dsymtablemodule.c79 PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT); in init_symtable()
/external/python/cpython2/Python/
Dsymtable.c387 SET_SCOPE(dict, name, GLOBAL_EXPLICIT); in analyze_name()
Dcompile.c2347 case GLOBAL_EXPLICIT: in compiler_nameop()