summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2020-11-28 18:43:22 -0300
committerGitHub <noreply@github.com>2020-11-28 13:43:22 -0800
commitfa840cc81d61b936ef95fdf7509a11b5927dc585 (patch)
tree4d920b5159041024436e966f08e29e2d26a0297e
parent4b44472966f17ad96d4370569ae049de9873e4af (diff)
downloadcpython-git-fa840cc81d61b936ef95fdf7509a11b5927dc585.tar.gz
Fix dis markup (GH-23524)
-rw-r--r--Doc/library/dis.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 8347c50ce3..ec64d3daf0 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -861,7 +861,7 @@ All of the following opcodes use their arguments.
.. opcode:: LIST_TO_TUPLE
- Pops a list from the stack and pushes a tuple containing the same values.
+ Pops a list from the stack and pushes a tuple containing the same values.
.. versionadded:: 3.9
@@ -889,7 +889,7 @@ All of the following opcodes use their arguments.
.. opcode:: DICT_MERGE
- Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys.
+ Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys.
.. versionadded:: 3.9
@@ -907,14 +907,14 @@ All of the following opcodes use their arguments.
.. opcode:: IS_OP (invert)
- Performs ``is`` comparison, or ``is not`` if ``invert`` is 1.
+ Performs ``is`` comparison, or ``is not`` if ``invert`` is 1.
.. versionadded:: 3.9
.. opcode:: CONTAINS_OP (invert)
- Performs ``in`` comparison, or ``not in`` if ``invert`` is 1.
+ Performs ``in`` comparison, or ``not in`` if ``invert`` is 1.
.. versionadded:: 3.9
@@ -955,8 +955,8 @@ All of the following opcodes use their arguments.
.. opcode:: JUMP_IF_NOT_EXC_MATCH (target)
- Tests whether the second value on the stack is an exception matching TOS,
- and jumps if it is not. Pops two values from the stack.
+ Tests whether the second value on the stack is an exception matching TOS,
+ and jumps if it is not. Pops two values from the stack.
.. versionadded:: 3.9