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: Update kwargs in pickle docs to match implementations
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, ddorfman
Priority: normal Keywords: patch

Created on 2004-07-28 09:18 by ddorfman, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libpickle.diff ddorfman, 2004-07-28 09:18 libpickle.tex patch
Messages (2)
msg46480 - (view) Author: Dima Dorfman (ddorfman) Date: 2004-07-28 09:18
The pickle documentation says that the first argument to dump 
and dumps is called "object", but both the pure-Python pickle 
module and (now) the cPickle module call it "obj". The pickle 
module purposely calls it "obj" instead of "object" to avoid 
shadowing the "object" builtin, and the cPickle does likewise to 
maintain API compatibility.

References: pickle.py 1.107, SF #995766
msg46481 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2004-08-07 20:26
Logged In: YES 
user_id=11375

Applied; thanks.

You know, you should probably request CVS commit privileges so you can 
make documentation fixes directly.  
History
Date User Action Args
2022-04-11 14:56:06adminsetgithub: 40654
2004-07-28 09:18:31ddorfmancreate