mirror of
https://github.com/python/cpython.git
synced 2026-05-17 18:08:50 -04:00
Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052)
This commit is contained in:
committed by
Xiang Zhang
parent
290a60bd8a
commit
1f36bf6077
@@ -1056,7 +1056,7 @@ class DictTest(unittest.TestCase):
|
||||
self.assertEqual(dict(it), data)
|
||||
|
||||
def test_valuesiterator_pickling(self):
|
||||
for proto in range(pickle.HIGHEST_PROTOCOL):
|
||||
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
|
||||
data = {1:"a", 2:"b", 3:"c"}
|
||||
# data.values() isn't picklable, only its iterator
|
||||
it = iter(data.values())
|
||||
|
||||
Reference in New Issue
Block a user