Home
last modified time | relevance | path

Searched refs:DELETE_FAST (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h135 #define DELETE_FAST 126 /* Local variable number */ macro
/external/python/cpython3/Include/
Dopcode.h101 #define DELETE_FAST 126 macro
/external/python/cpython2/Doc/library/
Ddis.rst767 .. opcode:: DELETE_FAST (var_num)
/external/python/cpython2/Python/
Dcompile.c881 case DELETE_FAST: in opcode_stack_effect()
2386 case Del: op = DELETE_FAST; break; in compiler_nameop()
Dceval.c2401 TARGET(DELETE_FAST) in PyEval_EvalFrameEx()
/external/python/cpython3/Doc/library/
Ddis.rst1018 .. opcode:: DELETE_FAST (var_num)
/external/python/cpython3/Python/
Dcompile.c1061 case DELETE_FAST: in stack_effect()
3232 case Del: op = DELETE_FAST; break; in compiler_nameop()
Dceval.c2153 TARGET(DELETE_FAST) { in _PyEval_EvalFrameDefault()