diff options
author | andrei kulakov <andrei.avk@gmail.com> | 2021-06-27 12:19:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-27 12:19:14 (GMT) |
commit | 6dd69f45f57e5a79828981039cfa141e0507709f (patch) | |
tree | b9b0d512f4a21e62bdb6e83d784bff4049302bdb | |
parent | ed1076428cca3c8dc7d075c16a575aa390e25fb8 (diff) | |
download | cpython-6dd69f45f57e5a79828981039cfa141e0507709f.zip cpython-6dd69f45f57e5a79828981039cfa141e0507709f.tar.gz cpython-6dd69f45f57e5a79828981039cfa141e0507709f.tar.bz2 |
Add missing arg to DICT_MERGE opcode (GH-26859)
-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 645e94a..2174706 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. |