@@ -861,7 +861,7 @@ All of the following opcodes use their arguments.
861
861
862
862
.. opcode :: LIST_TO_TUPLE
863
863
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.
865
865
866
866
.. versionadded :: 3.9
867
867
@@ -889,7 +889,7 @@ All of the following opcodes use their arguments.
889
889
890
890
.. opcode :: DICT_MERGE
891
891
892
- Like :opcode: `DICT_UPDATE ` but raises an exception for duplicate keys.
892
+ Like :opcode: `DICT_UPDATE ` but raises an exception for duplicate keys.
893
893
894
894
.. versionadded :: 3.9
895
895
@@ -907,14 +907,14 @@ All of the following opcodes use their arguments.
907
907
908
908
.. opcode :: IS_OP (invert)
909
909
910
- Performs ``is `` comparison, or ``is not `` if ``invert `` is 1.
910
+ Performs ``is `` comparison, or ``is not `` if ``invert `` is 1.
911
911
912
912
.. versionadded :: 3.9
913
913
914
914
915
915
.. opcode :: CONTAINS_OP (invert)
916
916
917
- Performs ``in `` comparison, or ``not in `` if ``invert `` is 1.
917
+ Performs ``in `` comparison, or ``not in `` if ``invert `` is 1.
918
918
919
919
.. versionadded :: 3.9
920
920
@@ -955,8 +955,8 @@ All of the following opcodes use their arguments.
955
955
956
956
.. opcode :: JUMP_IF_NOT_EXC_MATCH (target)
957
957
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.
960
960
961
961
.. versionadded :: 3.9
962
962
0 commit comments