From: Sergey Fedoseev Date: Mon, 10 Sep 2018 09:42:09 +0000 (+0500) Subject: Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052) X-Git-Tag: v3.8.0a1~1080 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f36bf6077d93cb43fd84bea4a8a625fa772d1fa;p=thirdparty%2FPython%2Fcpython.git Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052) --- diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index aa149d31eb0e..38521bbf6630 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -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())