Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/compiler/
Dast.txt87 if flags & CO_VARARGS:
94 if flags & CO_VARARGS:
Dastgen.py243 from consts import CO_VARARGS, CO_VARKEYWORDS
/external/python/cpython2/Lib/compiler/
Dconsts.py15 CO_VARARGS = 0x0004 variable
Dpyassem.py9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS
292 if flag == CO_VARARGS:
Dast.py5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
557 if flags & CO_VARARGS:
780 if flags & CO_VARARGS:
Dtransformer.py36 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
831 flags = flags | CO_VARARGS
Dpycodegen.py12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS,
1372 self.graph.setFlag(CO_VARARGS)
/external/python/cpython2/Include/
Dcode.h35 #define CO_VARARGS 0x0004 macro
/external/python/cpython3/Include/
Dcode.h56 #define CO_VARARGS 0x0004 macro
/external/python/cpython2/Lib/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
803 if co.co_flags & CO_VARARGS:
/external/python/cpython2/Python/
Dceval.c3393 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx()
3402 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
3407 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx()
3425 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx()
3512 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx()
3547 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
Dcompile.c3781 flags |= CO_VARARGS; in compute_code_flags()
/external/python/cpython3/Lib/
Dinspect.py1045 if co.co_flags & CO_VARARGS:
2164 if func_code.co_flags & CO_VARARGS:
2183 if func_code.co_flags & CO_VARARGS:
/external/python/cpython3/Objects/
Dcodeobject.c145 ((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0); in PyCode_New()
/external/python/cpython3/Python/
Dceval.c3613 assert((co->co_flags & CO_VARARGS) == 0); in too_many_positional()
3704 if (co->co_flags & CO_VARARGS) { in _PyEval_EvalCodeWithName()
3727 if (co->co_flags & CO_VARARGS) { in _PyEval_EvalCodeWithName()
3802 if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) { in _PyEval_EvalCodeWithName()
Dcompile.c5356 flags |= CO_VARARGS; in compute_code_flags()
/external/python/cpython3/Doc/library/
Dinspect.rst1315 .. data:: CO_VARARGS