diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-06-08 12:17:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 12:17:55 (GMT) |
commit | 3fe921cd49959181163671364c8b84faa88f7895 (patch) | |
tree | 939bcd1d318405affab0df79ffe650c1565565af /Doc/library | |
parent | 781dc76577b1810666f4ce04d8fc20d8b43fb374 (diff) | |
download | cpython-3fe921cd49959181163671364c8b84faa88f7895.zip cpython-3fe921cd49959181163671364c8b84faa88f7895.tar.gz cpython-3fe921cd49959181163671364c8b84faa88f7895.tar.bz2 |
Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-26396)" (GH-26597)
This reverts commit 631f9938b1604d4f893417ec339b9e0fa9196fb1.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 65fbb00..bc206f7 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1056,14 +1056,6 @@ 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 - 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" |