There was an error while loading. Please reload this page.
2 parents 409569b + dca807b commit 7101cb0Copy full SHA for 7101cb0
1 file changed
Lib/test/test_itertools.py
@@ -411,7 +411,7 @@ def permutations2(iterable, r=None):
411
412
self.pickletest(permutations(values, r)) # test pickling
413
414
- @support.impl_detail("tuple resuse is CPython specific")
+ @support.impl_detail("tuple reuse is specific to CPython")
415
def test_permutations_tuple_reuse(self):
416
self.assertEqual(len(set(map(id, permutations('abcde', 3)))), 1)
417
self.assertNotEqual(len(set(map(id, list(permutations('abcde', 3))))), 1)
0 commit comments