This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: cPickle doesn't like protocol keyword argument, pickle does
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ddorfman, irmen, loewis
Priority: normal Keywords:

Created on 2004-02-01 16:29 by irmen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg19872 - (view) Author: Irmen de Jong (irmen) (Python triager) Date: 2004-02-01 16:29
The dump and dumps functions from the "cPickle" module
don't accept the protocol keyword argument. The
"pickle" module does. This is an irritating API
difference that requires me to write different code to
deal with either cPickle or pickle (if cPickle is not
available).
msg19873 - (view) Author: Dima Dorfman (ddorfman) Date: 2004-07-22 08:26
Logged In: YES 
user_id=908995

Patch #995766 should take care of this
msg19874 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-07-28 18:07
Logged In: YES 
user_id=21627

Fix with said patch.
History
Date User Action Args
2022-04-11 14:56:02adminsetgithub: 39887
2004-02-01 16:29:45irmencreate