8000 Fix dis markup (GH-23524) · python/cpython@fa840cc · GitHub
[go: up one dir, main page]

Skip to content

Commit fa840cc

Browse files
Fix dis markup (GH-23524)
1 parent 4b44472 commit fa840cc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/library/dis.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ All of the following opcodes use their arguments.
861861

862862
.. opcode:: LIST_TO_TUPLE
863863

864-
Pops a list from the stack and pushes a tuple containing the same values.
864+
Pops a list from the stack and pushes a tuple containing the same values.
865865

866866
.. versionadded:: 3.9
867867

@@ -889,7 +889,7 @@ All of the following opcodes use their arguments.
889889

890890
.. opcode:: DICT_MERGE
891891

892-
Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys.
892+
Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys.
893893

894894
.. versionadded:: 3.9
895895

@@ -907,14 +907,14 @@ All of the following opcodes use their arguments.
907907

908908
.. opcode:: IS_OP (invert)
909909

910-
Performs ``is`` comparison, or ``is not`` if ``invert`` is 1.
910+
Performs ``is`` comparison, or ``is not`` if ``invert`` is 1.
911911

912912
.. versionadded:: 3.9
913913

914914

915915
.. opcode:: CONTAINS_OP (invert)
916916

917-
Performs ``in`` comparison, or ``not in`` if ``invert`` is 1.
917+
Performs ``in`` comparison, or ``not in`` if ``invert`` is 1.
918918

919919
.. versionadded:: 3.9
920920

@@ -955,8 +955,8 @@ All of the following opcodes use their arguments.
955955

956956
.. opcode:: JUMP_IF_NOT_EXC_MATCH (target)
957957

958-
Tests whether the second value on the stack is an exception matching TOS,
959-
and jumps if it is not. Pops two values from the stack.
958+
Tests whether the second value on the stack is an exception matching TOS,
959+
and jumps if it is not. Pops two values from the stack.
960960

961961
.. versionadded:: 3.9
962962

0 commit comments

Comments
 (0)
0