Issue 2917: Merge the pickle and cPickle module.

This commit is contained in:
Alexandre Vassalotti 2008-06-11 22:43:06 +00:00
parent 1e637b7373
commit cc313061a5
8 changed files with 4685 additions and 126 deletions

View file

@ -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)