From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 14 Mar 2020 14:45:23 +0000 (-0700) Subject: bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3... X-Git-Tag: v3.8.3rc1~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a927e91186727b5184d774d1d99c70b9ff5497f5;p=thirdparty%2FPython%2Fcpython.git bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3.6+ (GC-18550) (cherry picked from commit 6672c16b1d7f83789bf3a2016bd19edfd3568e71) Co-authored-by: Taine Zhao --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index b1404af9c00e..f4dfe16c7540 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1198,7 +1198,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 000000000000..3678a721fc6d --- /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`