[Python-checkins] Add missing arg to DICT_MERGE opcode (GH-26859)

markshannon webhook-mailer at python.org
Sun Jun 27 08:19:23 EDT 2021


https://github.com/python/cpython/commit/6dd69f45f57e5a79828981039cfa141e0507709f
commit: 6dd69f45f57e5a79828981039cfa141e0507709f
branch: main
author: andrei kulakov <andrei.avk at gmail.com>
committer: markshannon <mark at hotpy.org>
date: 2021-06-27T13:19:14+01:00
summary:

Add missing arg to DICT_MERGE opcode (GH-26859)

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 645e94a669fd1..21747069b3a19 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -936,7 +936,7 @@ All of the following opcodes use their arguments.
    .. versionadded:: 3.9
 
 
-.. opcode:: DICT_MERGE
+.. opcode:: DICT_MERGE (i)
 
    Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys.
 



More information about the Python-checkins mailing list