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

Taine Zhao webhook-mailer at python.org
Sat Mar 14 10:24:11 EDT 2020


https://github.com/python/cpython/commit/6672c16b1d7f83789bf3a2016bd19edfd3568e71
commit: 6672c16b1d7f83789bf3a2016bd19edfd3568e71
branch: master
author: Taine Zhao <twshere at outlook.com>
committer: GitHub <noreply at github.com>
date: 2020-03-14T16:24:06+02:00
summary:

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

files:
A Misc/NEWS.d/next/Documentation/2020-02-18-14-28-31.bpo-39677.vNHqoX.rst
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 61233d98a0d18..020942b647b93 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -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
diff --git a/Misc/NEWS.d/next/Documentation/2020-02-18-14-28-31.bpo-39677.vNHqoX.rst b/Misc/NEWS.d/next/Documentation/2020-02-18-14-28-31.bpo-39677.vNHqoX.rst
new file mode 100644
index 0000000000000..3678a721fc6d7
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2020-02-18-14-28-31.bpo-39677.vNHqoX.rst
@@ -0,0 +1 @@
+Changed operand name of **MAKE_FUNCTION** from *argc* to *flags* for module :mod:`dis`



More information about the Python-checkins mailing list