Skip to content

Commit

Permalink
bpo-39677: dis: rename the operand of MAKE_FUNCTION from argc to `f…
Browse files Browse the repository at this point in the history
…lags` for 3.6+ (GC-18550)
  • Loading branch information
thautwarm authored Mar 14, 2020
1 parent da52be4 commit 6672c16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed operand name of **MAKE_FUNCTION** from *argc* to *flags* for module :mod:`dis`

0 comments on commit 6672c16

Please sign in to comment.