summaryrefslogtreecommitdiff
path: root/Lib/test/pickletester.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-03 22:28:41 +0000
committerTim Peters <tim.peters@gmail.com>2003-02-03 22:28:41 +0000
commit5013bd9438be9b2faa8a70c72ef57bae1fe4a031 (patch)
treef207d2a80617c87fc18ee72500186bf07c105c61 /Lib/test/pickletester.py
parent22e71711b3abceb2d0dfca0f252e9c43b4ca23ad (diff)
downloadcpython-git-5013bd9438be9b2faa8a70c72ef57bae1fe4a031.tar.gz
test_newobj_generic(): Use the global protocols vector instead of a
hardcoded list.
Diffstat (limited to 'Lib/test/pickletester.py')
-rw-r--r--Lib/test/pickletester.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index 6c621e5386..0d2441adc5 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -570,7 +570,7 @@ class AbstractPickleTests(unittest.TestCase):
self.assertEqual(x.__dict__, y.__dict__)
def test_newobj_generic(self):
- for proto in [0, 1, 2]:
+ for proto in protocols:
for C in myclasses:
B = C.__base__
x = C(C.sample)