◐ Shell
reader mode source ↗
Skip to content
Merged
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
19 changes: 15 additions & 4 deletions Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,15 @@ All of the following opcodes use their arguments.
.. versionadded:: 3.5


.. opcode:: BUILD_LIST_UNPACK (count)

This is similar to :opcode:`BUILD_TUPLE_UNPACK`, but pushes a list
Expand Down Expand Up @@ -834,14 +843,16 @@ All of the following opcodes use their arguments.
.. versionadded:: 3.5


.. opcode:: BUILD_MAP_UNPACK_WITH_CALL (oparg)

This is similar to :opcode:`BUILD_MAP_UNPACK`,
but is used for ``f(**x, **y, **z)`` call syntax. The lowest byte of
*oparg* is the count of mappings, the relative position of the
corresponding callable ``f`` is encoded in the second byte of *oparg*.

.. versionadded:: 3.5


.. opcode:: LOAD_ATTR (namei)
Expand Down
Toggle all file notes Toggle all file annotations