Home
last modified time | relevance | path

Searched refs:GLOBAL_EXPLICIT (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/
Dsymtable.py6 LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL)
139 glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
185 return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT))
188 return bool(self.__scope == GLOBAL_EXPLICIT)
/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/cpython3/Include/
Dsymtable.h106 #define GLOBAL_EXPLICIT 2 macro
/external/python/cpython2/Modules/
Dsymtablemodule.c79 PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT); in init_symtable()
/external/python/cpython3/Modules/
Dsymtablemodule.c100 PyModule_AddIntMacro(m, GLOBAL_EXPLICIT); in PyInit__symtable()
/external/python/cpython2/Python/
Dsymtable.c389 SET_SCOPE(dict, name, GLOBAL_EXPLICIT); in analyze_name()
Dcompile.c2349 case GLOBAL_EXPLICIT: in compiler_nameop()
/external/python/cpython3/Python/
Dsymtable.c481 SET_SCOPE(scopes, name, GLOBAL_EXPLICIT); in analyze_name()
Dcompile.c704 if (scope == GLOBAL_EXPLICIT) in compiler_set_qualname()
3199 case GLOBAL_EXPLICIT: in compiler_nameop()