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
make patchcheck
  • Loading branch information
brandtbucher committed Jun 10, 2022
commit 986ce3a1ad0020a147145eb0241d5d078b3586df
4 changes: 2 additions & 2 deletions Lib/test/test_dis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ def test_co_positions_missing_info(self):
self.assertIsNone(positions.end_lineno)
self.assertIsNone(positions.col_offset)
self.assertIsNone(positions.end_col_offset)

@requires_debug_ranges()
def test_co_positions_with_lots_of_caches(self):
def roots(a, b, c):
Expand All @@ -1627,7 +1627,7 @@ def roots(a, b, c):
)
]
self.assertEqual(co_positions, dis_positions)

# get_instructions has its own tests above, so can rely on it to validate
# the object oriented API
class BytecodeTests(InstructionTestCase, DisTestBase):
Expand Down