mirror of https://github.com/python/cpython.git
bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3.6+ (GC-18550)
This commit is contained in:
parent
da52be4769
commit
6672c16b1d
|
@ -1136,7 +1136,7 @@ All of the following opcodes use their arguments.
|
|||
.. versionadded:: 3.7
|
||||
|
||||
|
||||
.. opcode:: MAKE_FUNCTION (argc)
|
||||
.. opcode:: MAKE_FUNCTION (flags)
|
||||
|
||||
Pushes a new function object on the stack. From bottom to top, the consumed
|
||||
stack must consist of values if the argument carries a specified flag value
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Changed operand name of **MAKE_FUNCTION** from *argc* to *flags* for module :mod:`dis`
|
Loading…
Reference in New Issue