diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-24 18:22:47 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-24 18:22:47 (GMT) |
commit | 7101cb07ef8cb9e63b99b0e1c8200f355841772c (patch) | |
tree | 79e479fce2343e0c2d004833e8ffe379de6aed51 /Lib/test | |
parent | 409569b1cf7deff28159e9b202370aa3fe90fae1 (diff) | |
parent | dca807b8f5ededa1ae3cad3f5d73354c51335934 (diff) | |
download | cpython-7101cb07ef8cb9e63b99b0e1c8200f355841772c.zip cpython-7101cb07ef8cb9e63b99b0e1c8200f355841772c.tar.gz cpython-7101cb07ef8cb9e63b99b0e1c8200f355841772c.tar.bz2 |
Closes #21346: Merge with 3.4
Diffstat (limited to 'Lib/test')
-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) |