Searched refs:CO_VARARGS (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 87 if flags & CO_VARARGS: 94 if flags & CO_VARARGS:
|
D | astgen.py | 243 from consts import CO_VARARGS, CO_VARKEYWORDS
|
/external/python/cpython2/Lib/compiler/ |
D | consts.py | 15 CO_VARARGS = 0x0004 variable
|
D | pyassem.py | 9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS 292 if flag == CO_VARARGS:
|
D | ast.py | 5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS 557 if flags & CO_VARARGS: 780 if flags & CO_VARARGS:
|
D | transformer.py | 36 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS 831 flags = flags | CO_VARARGS
|
D | pycodegen.py | 12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS, 1372 self.graph.setFlag(CO_VARARGS)
|
/external/python/cpython2/Include/ |
D | code.h | 35 #define CO_VARARGS 0x0004 macro
|
/external/python/cpython3/Include/ |
D | code.h | 56 #define CO_VARARGS 0x0004 macro
|
/external/python/cpython2/Lib/ |
D | inspect.py | 45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable 803 if co.co_flags & CO_VARARGS:
|
/external/python/cpython2/Python/ |
D | ceval.c | 3393 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()
|
D | compile.c | 3781 flags |= CO_VARARGS; in compute_code_flags()
|
/external/python/cpython3/Lib/ |
D | inspect.py | 1045 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/ |
D | codeobject.c | 145 ((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0); in PyCode_New()
|
/external/python/cpython3/Python/ |
D | ceval.c | 3613 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()
|
D | compile.c | 5356 flags |= CO_VARARGS; in compute_code_flags()
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1315 .. data:: CO_VARARGS
|