◐ 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
55 changes: 53 additions & 2 deletions Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,13 @@ All of the following opcodes use their arguments.

.. opcode:: BUILD_MAP (count)

Pushes a new dictionary object onto the stack. The dictionary is pre-sized
to hold *count* entries.


.. opcode:: BUILD_CONST_KEY_MAP (count)
Expand All @@ -793,6 +798,52 @@ All of the following opcodes use their arguments.
.. versionadded:: 3.6


.. opcode:: LOAD_ATTR (namei)

Replaces TOS with ``getattr(TOS, co_names[namei])``.
Expand Down
Toggle all file notes Toggle all file annotations