Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update the dis docs.
  • Loading branch information
ericsnowcurrently committed Jun 7, 2021
commit 167cdc14ad0da04f0b30d0f08f08b7c5daf32474
8 changes: 8 additions & 0 deletions Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,14 @@ All of the following opcodes use their arguments.
Deletes local ``co_varnames[var_num]``.


.. opcode:: MAKE_CELL (i)

Creates a new cell in slot ``i``. If that slot is empty then
Comment thread
ericsnowcurrently marked this conversation as resolved.
Outdated
that value is stored into the new cell.

.. versionadded:: 3.11


.. opcode:: LOAD_CLOSURE (i)

Pushes a reference to the cell contained in slot ``i`` of the "fast locals"
Expand Down