Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Appease linter
  • Loading branch information
savannahostrowski committed Oct 23, 2023
commit c2b4538c863a894a9cf98d2f25627c0d4dfff56b
4 changes: 2 additions & 2 deletions Lib/test/test_sys_settrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ def test_jump_is_not_none_forwards(output):
output.append(1)
else:
output.append(2)

@jump_test(2, 1, [2, 3])
def test_jump_is_not_none_backwards(output):
x = None
Expand All @@ -2097,7 +2097,7 @@ def test_jump_is_not_none_backwards(output):
else:
output.append(2)
output.append(3)

@jump_test(3, 5, [2, 5], warning=(RuntimeWarning, unbound_locals))
def test_jump_out_of_block_forwards(output):
for i in 1, 2:
Expand Down