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
Apply patch where test name was changed
  • Loading branch information
ShaharNaveh committed Sep 2, 2025
commit 3d52ed7b25f8db22e6ab40195e730365f3805ee1
5 changes: 1 addition & 4 deletions Lib/test/test_itertools.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,7 @@ def test_count(self):
#check proper internal error handling for large "step' sizes
count(1, maxsize+5); sys.exc_info()

@unittest.expectedFailure # TODO: RUSTPYTHON
@pickle_deprecated
def test_count_with_step(self):
self.assertEqual(lzip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)])
Expand Down Expand Up @@ -1943,10 +1944,6 @@ def test_immutable_types(self):
with self.assertRaisesRegex(TypeError, "immutable"):
tp.foobar = 1

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_count_with_stride(self):
return super().test_count_with_stride()


class TestExamples(unittest.TestCase):

Expand Down