aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/shelve.py
Commit message (Expand)AuthorAge
* bpo-34204: Use pickle.DEFAULT_PROTOCOL in shelve (GH-19639)Zackery Spytz2020-10-29
* Fix misleading docsting of shelve.open(). (GH-6427)Serhiy Storchaka2018-04-09
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-24
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-10
* Add spaces to follow PEP8.Andrew Svetlov2012-10-06
* Issue #13896: Make shelf instances work with 'with' as context managers.Andrew Svetlov2012-10-06
* #7905: Actually respect the keyencoding parameter to shelve.Shelf.Georg Brandl2010-12-04
* Merged revisions 78141-78142 via svnmerge fromR. David Murray2010-02-11
* Merged revisions 78137 via svnmerge fromR. David Murray2010-02-11
* The default shelve pickle protocol should have been 3.Raymond Hettinger2009-02-03
* Merged revisions 65787 via svnmerge fromBrett Cannon2008-08-17
* Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 ...Benjamin Peterson2008-07-31
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-26
* The new default protocol is two.Raymond Hettinger2008-02-10
* Start replacing UserDict.DictMixin with collections.MutableMapping (the bsddb...Raymond Hettinger2008-02-04
* Change shelve to require a bytes-oriented dict asMartin v. Löwis2007-08-11
* Move shelve over to BytesIO as pickle.(Pickler | Unpickler) expect binaryBrett Cannon2007-07-26
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-18
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-21
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-11
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-18
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Removed deprecated method arguments from the shelve module.Raymond Hettinger2004-12-05
* Fixup bare try/except.Raymond Hettinger2003-05-27
* SF 740055: optional argument protocol in shelve.open is ignoredRaymond Hettinger2003-05-20
* Whitespace normalization.Tim Peters2003-04-24
* Patch #553171: Add writeback parameter. Also add protocol parameter.Martin v. Löwis2003-04-19
* flesh out open() docstringSkip Montanaro2003-01-21
* self.binary -> self._binary to remove it from the public interface -Skip Montanaro2002-12-08
* Add support for binary pickles to the shelve module. In some situationsSkip Montanaro2002-12-08
* SF patch #520382: Expand shelve.py to have a full dictionary interfaceRaymond Hettinger2002-11-15
* Patch #624936: Implement __contains__.Martin v. Löwis2002-10-18
* bunch more __all__ listsSkip Montanaro2001-02-15
* Whitespace normalization.Tim Peters2001-01-15
* Untabify to pass the -tt test.Fred Drake2000-02-10
* Patch by Paul Sokolovsky to support the get() method.Guido van Rossum1999-08-11
* Give in to tabnanny.Guido van Rossum1998-04-06
* Don't write "if self.dict: self.dict.close()"; just writeGuido van Rossum1998-03-26
* Make close(), and hence __del__(), robust in the light of the worldGuido van Rossum1997-12-09
* Use cPickle and cStringIO when available.Guido van Rossum1997-06-06
* Added a 'sync' method to shelve. If the underlying database does not have a ...Roger E. Masse1997-03-25
* Fix bogus len() callGuido van Rossum1996-09-10
* renamed DbShelf->DbfilenameShelf;added BsdDbShelf (David Ely)Guido van Rossum1995-08-11
* fix stupid bug (db should be dict)Guido van Rossum1995-02-27
* minute comment changesGuido van Rossum1995-02-16
* added __doc__ strings etc.Guido van Rossum1995-02-09
* shelve.py: database of persistent objects, on top of pickle.py and anydbm.pyGuido van Rossum1995-01-10