]> granicus.if.org Git - python/commitdiff
Issue #21346: Fix typo, make message consistent in test_itertools.
authorZachary Ware <zachary.ware@gmail.com>
Thu, 24 Apr 2014 18:22:05 +0000 (13:22 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Thu, 24 Apr 2014 18:22:05 +0000 (13:22 -0500)
Pointed out by Brian Kearns.

Lib/test/test_itertools.py

index 3a580ad9b2df2235d42e966aedaad1dfbac3e6d1..7769f1c83ed11a416aa3b519944f1154056aab81 100644 (file)
@@ -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)