Home
last modified time | relevance | path

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

/third_party/python/Include/
Dopcode.h59 #define YIELD_FROM 72 macro
/third_party/python/Misc/NEWS.d/
D3.6.0rc1.rst31 instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647).
D3.7.0a1.rst1065 instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647).
/third_party/python/Python/
Dcompile.c1047 case YIELD_FROM: in stack_effect()
1837 ADDOP(c, YIELD_FROM); in compiler_unwind_fblock()
2921 ADDOP(c, YIELD_FROM); in compiler_async_for()
4733 ADDOP(c, YIELD_FROM); in compiler_async_comprehension_generator()
4879 ADDOP(c, YIELD_FROM); in compiler_comprehension()
5033 ADDOP(c, YIELD_FROM); in compiler_async_with()
5070 ADDOP(c, YIELD_FROM); in compiler_async_with()
5081 ADDOP(c, YIELD_FROM); in compiler_async_with()
5233 ADDOP(c, YIELD_FROM); in compiler_visit_expr1()
5250 ADDOP(c, YIELD_FROM); in compiler_visit_expr1()
Dceval.c1758 opcode != YIELD_FROM) { in _PyEval_EvalFrameDefault()
2581 case TARGET(YIELD_FROM): { in _PyEval_EvalFrameDefault()
/third_party/python/Objects/
Dgenobject.c354 assert(code[0] != YIELD_FROM); in _PyGen_yf()
358 if (code[(f->f_lasti+1)*sizeof(_Py_CODEUNIT)] != YIELD_FROM) in _PyGen_yf()
/third_party/python/Doc/library/
Ddis.rst671 .. opcode:: YIELD_FROM