Searched refs:GLOBAL_EXPLICIT (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | symtable.py | 6 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/ |
D | symtable.h | 81 #define GLOBAL_EXPLICIT 2 macro
|
/external/python/cpython2/Modules/ |
D | symtablemodule.c | 79 PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT); in init_symtable()
|
/external/python/cpython2/Python/ |
D | symtable.c | 387 SET_SCOPE(dict, name, GLOBAL_EXPLICIT); in analyze_name()
|
D | compile.c | 2347 case GLOBAL_EXPLICIT: in compiler_nameop()
|