Home
last modified time | relevance | path

Searched refs:MAKE_FUNCTION (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Include/
Dopcode.h106 #define MAKE_FUNCTION 132 macro
/external/python/cpython2/Include/
Dopcode.h140 #define MAKE_FUNCTION 132 /* #defaults */ macro
/external/python/cpython3/Lib/
Ddis.py26 MAKE_FUNCTION = opmap['MAKE_FUNCTION'] variable
358 elif op == MAKE_FUNCTION:
/external/python/cpython2/Lib/compiler/
Dpyassem.py750 def MAKE_FUNCTION(self, argc): member in StackDepthTracker
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a2.rst7 Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. Patch by Demur
D3.9.0a5.rst919 Changed operand name of **MAKE_FUNCTION** from *argc* to *flags* for module
D3.8.0a1.rst5589 Improved disassembly of the MAKE_FUNCTION instruction.
/external/python/cpython2/Doc/library/
Ddis.rst816 .. opcode:: MAKE_FUNCTION (argc)
/external/python/cpython2/Python/
Dcompile.c895 case MAKE_FUNCTION: in opcode_stack_effect()
1274 ADDOP_I(c, MAKE_FUNCTION, args); in compiler_make_closure()
Dceval.c3063 TARGET(MAKE_FUNCTION) in PyEval_EvalFrameEx()
/external/python/cpython3/Doc/library/
Ddis.rst1139 .. opcode:: MAKE_FUNCTION (flags)
/external/python/cpython3/Python/
Dcompile.c1065 case MAKE_FUNCTION: in stack_effect()
1943 ADDOP_I(c, MAKE_FUNCTION, flags); in compiler_make_closure()
Dceval.c3592 case TARGET(MAKE_FUNCTION): { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Doc/whatsnew/
D3.6.rst2363 The :opcode:`MAKE_FUNCTION`, :opcode:`CALL_FUNCTION`,