diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-03-14 14:45:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 14:45:23 (GMT) |
commit | a927e91186727b5184d774d1d99c70b9ff5497f5 (patch) | |
tree | b038a18a0ae45b5b5a4ae5b30e4a64d47f2a96da /Doc/library | |
parent | 9644702936a5758b99bd951446a5b0ef05ec022a (diff) | |
download | cpython-a927e91186727b5184d774d1d99c70b9ff5497f5.zip cpython-a927e91186727b5184d774d1d99c70b9ff5497f5.tar.gz cpython-a927e91186727b5184d774d1d99c70b9ff5497f5.tar.bz2 |
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 <twshere@outlook.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index b1404af..f4dfe16 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 |