Issue 999280: Update kwargs in pickle docs to match implementations (original) (raw)

Issue999280

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:06 admin set github: 40654
2004-07-28 09🔞31 ddorfman create