Skip to content

Commit 710bc9f

Browse files
committed
Fix linting: remove duplicate line and trailing whitespace
1 parent 9b913e4 commit 710bc9f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Doc/library/dis.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ not have to be) the original ``STACK[-2]``.
819819
when awaiting a next item. The stack contains the async iterable in
820820
``STACK[-2]`` and the raised exception in ``STACK[-1]``. Both are popped.
821821
If the exception is not :exc:`StopAsyncIteration`, it is re-raised.
822-
822+
823823
Decrements the bytecode counter by *delta* to jump back to the loop start
824824
if continuing iteration.
825825

@@ -2095,7 +2095,7 @@ instructions:
20952095

20962096
.. data:: hasjback
20972097

2098-
Sequence of bytecodes that perform backward jumps, such as
2098+
Sequence of bytecodes that perform backward jumps, such as
20992099
:opcode:`JUMP_BACKWARD`, :opcode:`FOR_ITER`, and :opcode:`END_ASYNC_FOR`.
21002100

21012101
.. versionadded:: 3.14

Lib/opcode.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def _is_backward_jump_op(op):
5252

5353

5454

55-
_intrinsic_1_descs = _opcode.get_intrinsic1_descs()
5655

5756
_intrinsic_1_descs = _opcode.get_intrinsic1_descs()
5857
_intrinsic_2_descs = _opcode.get_intrinsic2_descs()

0 commit comments

Comments
 (0)