Home
last modified time | relevance | path

Searched refs:CALL_FUNCTION_KW (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h151 #define CALL_FUNCTION_KW 141 /* #args + (#kwargs<<8) */ macro
/external/python/cpython3/Include/
Dopcode.h110 #define CALL_FUNCTION_KW 141 macro
/external/python/cpython2/Lib/compiler/
Dpyassem.py746 def CALL_FUNCTION_KW(self, argc): member in StackDepthTracker
/external/python/cpython3/Doc/library/
Ddis.rst1081 .. opcode:: CALL_FUNCTION_KW (argc)
1089 ``CALL_FUNCTION_KW`` pops all arguments and the callable object off the stack,
/external/python/cpython2/Doc/library/
Ddis.rst855 .. opcode:: CALL_FUNCTION_KW (argc)
/external/python/cpython2/Python/
Dcompile.c890 case CALL_FUNCTION_KW: in opcode_stack_effect()
2566 ADDOP_I(c, CALL_FUNCTION_KW, n); in compiler_call()
Dceval.c3018 TARGET_WITH_IMPL(CALL_FUNCTION_KW, _call_function_var_kw) in PyEval_EvalFrameEx()
/external/python/cpython3/Python/
Dcompile.c1072 case CALL_FUNCTION_KW: in stack_effect()
3773 ADDOP_I(c, CALL_FUNCTION_KW, n + nelts + nkwelts); in compiler_call_helper()
Dceval.c3133 TARGET(CALL_FUNCTION_KW) { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Doc/whatsnew/
D3.6.rst2364 :opcode:`CALL_FUNCTION_KW` and :opcode:`BUILD_MAP_UNPACK_WITH_CALL` opcodes