Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dcode.h69 #define CO_VARARGS 0x0004 macro
/third_party/python/Lib/
Dinspect.py1209 if co.co_flags & CO_VARARGS:
2337 if func_code.co_flags & CO_VARARGS:
2356 if func_code.co_flags & CO_VARARGS:
Dpdb.py1144 if co.co_flags & inspect.CO_VARARGS: n = n+1
/third_party/python/Objects/
Dcodeobject.c189 ((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0); in PyCode_NewWithPosOnlyArgs()
/third_party/python/Python/
Dceval.c4667 assert((co->co_flags & CO_VARARGS) == 0); in too_many_positional()
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()
Dcompile.c6820 flags |= CO_VARARGS; in compute_code_flags()
/third_party/python/Doc/library/
Dinspect.rst1436 .. data:: CO_VARARGS