From: Zachary Ware Date: Thu, 24 Apr 2014 18:22:05 +0000 (-0500) Subject: Issue #21346: Fix typo, make message consistent in test_itertools. X-Git-Tag: v3.4.1rc1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca807b8f5ededa1ae3cad3f5d73354c51335934;p=thirdparty%2FPython%2Fcpython.git Issue #21346: Fix typo, make message consistent in test_itertools. Pointed out by Brian Kearns. --- diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 3a580ad9b2df..7769f1c83ed1 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -411,7 +411,7 @@ class TestBasicOps(unittest.TestCase): self.pickletest(permutations(values, r)) # test pickling - @support.impl_detail("tuple resuse is CPython specific") + @support.impl_detail("tuple reuse is specific to CPython") def test_permutations_tuple_reuse(self): self.assertEqual(len(set(map(id, permutations('abcde', 3)))), 1) self.assertNotEqual(len(set(map(id, list(permutations('abcde', 3))))), 1)