summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-12-27 04:19:48 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-12-27 04:19:48 (GMT)
commit0fc074758670e56bcc61123a641a345cbe1988e3 (patch)
treea99483147f5392d1795c098e2444a2fa9df16f7b /Lib/test/test_set.py
parent1e551b47d368e3a84ec084c1082b74393a586303 (diff)
downloadcpython-0fc074758670e56bcc61123a641a345cbe1988e3.zip
cpython-0fc074758670e56bcc61123a641a345cbe1988e3.tar.gz
cpython-0fc074758670e56bcc61123a641a345cbe1988e3.tar.bz2
Issue #4740: Use HIGHEST_PROTOCOL in pickle test.
(There is no behavior difference in 2.x because HIGHEST_PROTOCOL == 2)
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 499406f..d38a675 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -221,7 +221,7 @@ class TestJointOps(unittest.TestCase):
self.failIf(set('cbs').issuperset('a'))
def test_pickling(self):
- for i in (0, 1, 2):
+ for i in range(pickle.HIGHEST_PROTOCOL + 1):
p = pickle.dumps(self.s, i)
dup = pickle.loads(p)
self.assertEqual(self.s, dup, "%s != %s" % (self.s, dup))