Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dopcode.h51 #define YIELD_FROM 72 macro
/external/python/cpython3/Misc/NEWS.d/
D3.6.0rc1.rst31 instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647).
D3.7.0a1.rst1066 instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647).
/external/python/cpython3/Python/
Dcompile.c971 case YIELD_FROM: in stack_effect()
2407 ADDOP(c, YIELD_FROM); in compiler_async_for()
3956 ADDOP(c, YIELD_FROM); in compiler_async_comprehension_generator()
4112 ADDOP(c, YIELD_FROM); in compiler_comprehension()
4255 ADDOP(c, YIELD_FROM); in compiler_async_with()
4296 ADDOP(c, YIELD_FROM); in compiler_async_with()
4450 ADDOP(c, YIELD_FROM); in compiler_visit_expr()
4463 ADDOP(c, YIELD_FROM); in compiler_visit_expr()
Dceval.c948 opcode == YIELD_FROM) { in _PyEval_EvalFrameDefault()
1782 TARGET(YIELD_FROM) { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Objects/
Dgenobject.c343 assert(code[0] != YIELD_FROM); in _PyGen_yf()
347 if (code[f->f_lasti + sizeof(_Py_CODEUNIT)] != YIELD_FROM) in _PyGen_yf()
Dframeobject.c192 if (code[f->f_lasti] == YIELD_VALUE || code[f->f_lasti] == YIELD_FROM) { in frame_setlineno()
/external/python/cpython3/Doc/library/
Ddis.rst652 .. opcode:: YIELD_FROM