From: andrei kulakov Date: Sun, 27 Jun 2021 12:19:14 +0000 (-0400) Subject: Add missing arg to DICT_MERGE opcode (GH-26859) X-Git-Tag: v3.11.0a1~778 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dd69f45f57e5a79828981039cfa141e0507709f;p=thirdparty%2FPython%2Fcpython.git Add missing arg to DICT_MERGE opcode (GH-26859) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 645e94a669fd..21747069b3a1 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.