summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cpickle.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-22 22:05:20 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-22 22:05:20 (GMT)
commite935816164fb028d90072627a2dd9bd17bca969c (patch)
tree0ce07c971cf2d0dc9b22f6114548fbe95bbfe7a8 /Lib/test/test_cpickle.py
parentda6daee43977fa0bae953f4104012f069ddc79e6 (diff)
downloadcpython-e935816164fb028d90072627a2dd9bd17bca969c.zip
cpython-e935816164fb028d90072627a2dd9bd17bca969c.tar.gz
cpython-e935816164fb028d90072627a2dd9bd17bca969c.tar.bz2
Reorganize pickle/cPickle testing so the tests pass regardless of the order
they're run.
Diffstat (limited to 'Lib/test/test_cpickle.py')
-rw-r--r--Lib/test/test_cpickle.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_cpickle.py b/Lib/test/test_cpickle.py
index f2aa0fe..c03df38 100644
--- a/Lib/test/test_cpickle.py
+++ b/Lib/test/test_cpickle.py
@@ -1,5 +1,3 @@
-# Test the cPickle module
-
import cPickle
-import test_pickle
-test_pickle.dotest(cPickle)
+import pickletester
+pickletester.dotest(cPickle)