summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2021-05-02 20:02:10 (GMT)
committerGitHub <noreply@github.com>2021-05-02 20:02:10 (GMT)
commit0ad1e0384c8afc5259a6d03363491d89500a5d03 (patch)
tree66debec62434d9503dd8c3b60c22dc99dcd15f95 /Doc/library/dis.rst
parent7d2b83e9f092a2ea1f715fe028f7c48324bee756 (diff)
downloadcpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.zip
cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.gz
cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.bz2
bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r--Doc/library/dis.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 875ab8b..0491a9d 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1256,6 +1256,15 @@ All of the following opcodes use their arguments.
.. versionadded:: 3.10
+
+.. opcode:: ROT_N (count)
+
+ Lift the top *count* stack items one position up, and move TOS down to
+ position *count*.
+
+ .. versionadded:: 3.10
+
+
.. opcode:: HAVE_ARGUMENT
This is not really an opcode. It identifies the dividing line between