Lines Matching refs:co_flags
2636 if (co->co_flags & CO_ASYNC_GENERATOR) { in _PyEval_EvalFrameDefault()
3974 if (!(co->co_flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE))) { in _PyEval_EvalFrameDefault()
4667 assert((co->co_flags & CO_VARARGS) == 0); in too_many_positional()
4800 if (co->co_flags & CO_VARKEYWORDS) { in _PyEval_MakeFrameVector()
4805 if (co->co_flags & CO_VARARGS) { in _PyEval_MakeFrameVector()
4829 if (co->co_flags & CO_VARARGS) { in _PyEval_MakeFrameVector()
4910 if ((argcount > co->co_argcount) && !(co->co_flags & CO_VARARGS)) { in _PyEval_MakeFrameVector()
5025 …assert (((PyCodeObject *)con->fc_code)->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERAT… in make_coro()
5027 int is_coro = ((PyCodeObject *)con->fc_code)->co_flags & CO_COROUTINE; in make_coro()
5037 } else if (((PyCodeObject *)con->fc_code)->co_flags & CO_ASYNC_GENERATOR) { in make_coro()
5062 …if (((PyCodeObject *)con->fc_code)->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR))… in _PyEval_Vector()
5738 const int codeflags = current_frame->f_code->co_flags; in PyEval_MergeCompilerFlags()