summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-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 8e586e6..7f309ce 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1043,6 +1043,15 @@ iterations of the loop.
``cmp_op[opname]``.
+.. opcode:: COMPARE_AND_BRANCH (opname)
+
+ Compares the top two values on the stack, popping them, then branches.
+ The direction and offset of the jump is embedded as a ``POP_JUMP_IF_TRUE``
+ or ``POP_JUMP_IF_FALSE`` instruction immediately following the cache.
+
+ .. versionadded:: 3.12
+
+
.. opcode:: IS_OP (invert)
Performs ``is`` comparison, or ``is not`` if ``invert`` is 1.