Home
last modified time | relevance | path

Searched refs:STORE_GLOBAL (Results 1 – 12 of 12) sorted by relevance

/external/python/setuptools/setuptools/
Ddepends.py154 STORE_GLOBAL = 97
165 elif arg == name_idx and (op == STORE_NAME or op == STORE_GLOBAL):
/external/python/cpython2/Include/
Dopcode.h104 #define STORE_GLOBAL 97 /* "" */ macro
/external/python/cpython3/Include/
Dopcode.h76 #define STORE_GLOBAL 97 macro
/external/python/cpython2/Lib/
Dmodulefinder.py21 STORE_GLOBAL = dis.opmap['STORE_GLOBAL'] variable
22 STORE_OPS = STORE_NAME, STORE_GLOBAL
/external/python/cpython3/Lib/
Dmodulefinder.py18 STORE_GLOBAL = dis.opmap['STORE_GLOBAL'] variable
19 STORE_OPS = STORE_NAME, STORE_GLOBAL
/external/python/cpython2/Doc/library/
Ddis.rst587 or ``STORE_GLOBAL`` if possible.
619 .. opcode:: STORE_GLOBAL (namei)
/external/python/cpython3/Doc/library/
Ddis.rst751 :opcode:`STORE_FAST` or :opcode:`STORE_GLOBAL` if possible.
789 .. opcode:: STORE_GLOBAL (namei)
/external/python/cpython2/Python/
Dcompile.c832 case STORE_GLOBAL: in opcode_stack_effect()
2401 case Store: op = STORE_GLOBAL; break; in compiler_nameop()
Dceval.c2283 TARGET(STORE_GLOBAL) in PyEval_EvalFrameEx()
/external/python/cpython3/Python/
Dcompile.c997 case STORE_GLOBAL: in stack_effect()
3247 case Store: op = STORE_GLOBAL; break; in compiler_nameop()
Dceval.c2034 TARGET(STORE_GLOBAL) { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst4771 be assigned using STORE_GLOBAL opcode).