diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-24 18:22:05 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-24 18:22:05 (GMT) |
commit | dca807b8f5ededa1ae3cad3f5d73354c51335934 (patch) | |
tree | bd663b9f4cacf1ee506f277b60913b0fd4732f96 /Lib | |
parent | 404b5dac85c6ceb36b2bda42332387134b21976f (diff) | |
download | cpython-dca807b8f5ededa1ae3cad3f5d73354c51335934.zip cpython-dca807b8f5ededa1ae3cad3f5d73354c51335934.tar.gz cpython-dca807b8f5ededa1ae3cad3f5d73354c51335934.tar.bz2 |
Issue #21346: Fix typo, make message consistent in test_itertools.
Pointed out by Brian Kearns.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_itertools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 3a580ad..7769f1c 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) |