bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3.6+ (GC-18550)

This commit is contained in:
Taine Zhao 2020-03-14 23:24:06 +09:00 committed by GitHub
parent da52be4769
commit 6672c16b1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1 @@
Changed operand name of **MAKE_FUNCTION** from *argc* to *flags* for module :mod:`dis`