summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pickletools.py
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-06-11 22:43:06 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-06-11 22:43:06 (GMT)
commitcc313061a5b45c12e9772e2f9f2ae623fc00e31d (patch)
tree2671b4f3883c561c60e1578d4b4e86590842b79e /Lib/test/test_pickletools.py
parent1e637b7373c6a183524b2bfa16d7702ef451e632 (diff)
downloadcpython-cc313061a5b45c12e9772e2f9f2ae623fc00e31d.zip
cpython-cc313061a5b45c12e9772e2f9f2ae623fc00e31d.tar.gz
cpython-cc313061a5b45c12e9772e2f9f2ae623fc00e31d.tar.bz2
Issue 2917: Merge the pickle and cPickle module.
Diffstat (limited to 'Lib/test/test_pickletools.py')
-rw-r--r--Lib/test/test_pickletools.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_pickletools.py b/Lib/test/test_pickletools.py
index ccb6c9c..3e701b0 100644
--- a/Lib/test/test_pickletools.py
+++ b/Lib/test/test_pickletools.py
@@ -12,8 +12,6 @@ class OptimizedPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
def loads(self, buf):
return pickle.loads(buf)
- module = pickle
- error = KeyError
def test_main():
support.run_unittest(OptimizedPickleTests)