| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix misleading docsting of shelve.open(). (GH-6427) | Serhiy Storchaka | 2018-04-09 | 1 | -1/+1 |
|
|
* | bpo-30144: Import collections ABC from collections.abc rather than collection... | Serhiy Storchaka | 2017-04-24 | 1 | -3/+3 |
|
|
* | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -10/+14 |
|
|
* | Add spaces to follow PEP8. | Andrew Svetlov | 2012-10-06 | 1 | -1/+1 |
|
|
* | Issue #13896: Make shelf instances work with 'with' as context managers. | Andrew Svetlov | 2012-10-06 | 1 | -0/+7 |
|
|
* | #7905: Actually respect the keyencoding parameter to shelve.Shelf. | Georg Brandl | 2010-12-04 | 1 | -1/+2 |
|
|
* | Merged revisions 78141-78142 via svnmerge from | R. David Murray | 2010-02-11 | 1 | -4/+5 |
|
|
* | Merged revisions 78137 via svnmerge from | R. David Murray | 2010-02-11 | 1 | -1/+5 |
|
|
* | The default shelve pickle protocol should have been 3. | Raymond Hettinger | 2009-02-03 | 1 | -1/+1 |
|
|
* | Merged revisions 65787 via svnmerge from | Brett Cannon | 2008-08-17 | 1 | -1/+0 |
|
|
* | Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 ... | Benjamin Peterson | 2008-07-31 | 1 | -1/+11 |
|
|
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 | 1 | -4/+4 |
|
|
* | The new default protocol is two. | Raymond Hettinger | 2008-02-10 | 1 | -1/+1 |
|
|
* | Start replacing UserDict.DictMixin with collections.MutableMapping (the bsddb... | Raymond Hettinger | 2008-02-04 | 1 | -3/+3 |
|
|
* | Change shelve to require a bytes-oriented dict as | Martin v. Löwis | 2007-08-11 | 1 | -14/+18 |
|
|
* | Move shelve over to BytesIO as pickle.(Pickler | Unpickler) expect binary | Brett Cannon | 2007-07-26 | 1 | -8/+8 |
|
|
* | Change some uses of cStringIO.StringIO to io.StringIO. | Guido van Rossum | 2007-05-18 | 1 | -11/+2 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -6/+3 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -0/+3 |
|
|
* | Removed deprecated method arguments from the shelve module. | Raymond Hettinger | 2004-12-05 | 1 | -16/+7 |
|
|
* | Fixup bare try/except. | Raymond Hettinger | 2003-05-27 | 1 | -1/+1 |
|
|
* | SF 740055: optional argument protocol in shelve.open is ignored | Raymond Hettinger | 2003-05-20 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -1/+1 |
|
|
* | Patch #553171: Add writeback parameter. Also add protocol parameter. | Martin v. Löwis | 2003-04-19 | 1 | -19/+80 |
|
|
* | flesh out open() docstring | Skip Montanaro | 2003-01-21 | 1 | -1/+7 |
|
|
* | self.binary -> self._binary to remove it from the public interface - | Skip Montanaro | 2002-12-08 | 1 | -2/+2 |
|
|
* | Add support for binary pickles to the shelve module. In some situations | Skip Montanaro | 2002-12-08 | 1 | -8/+9 |
|
|
* | SF patch #520382: Expand shelve.py to have a full dictionary interface | Raymond Hettinger | 2002-11-15 | 1 | -1/+3 |
|
|
* | Patch #624936: Implement __contains__. | Martin v. Löwis | 2002-10-18 | 1 | -1/+4 |
|
|
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -98/+98 |
|
|
* | Untabify to pass the -tt test. | Fred Drake | 2000-02-10 | 1 | -109/+109 |
|
|
* | Patch by Paul Sokolovsky to support the get() method. | Guido van Rossum | 1999-08-11 | 1 | -0/+5 |
|
|
* | Give in to tabnanny. | Guido van Rossum | 1998-04-06 | 1 | -5/+5 |
|
|
* | Don't write "if self.dict: self.dict.close()"; just write | Guido van Rossum | 1998-03-26 | 1 | -2/+1 |
|
|
* | Make close(), and hence __del__(), robust in the light of the world | Guido van Rossum | 1997-12-09 | 1 | -3/+6 |
|
|
* | Use cPickle and cStringIO when available. | Guido van Rossum | 1997-06-06 | 1 | -20/+30 |
|
|
* | Added a 'sync' method to shelve. If the underlying database does not have a ... | Roger E. Masse | 1997-03-25 | 1 | -0/+4 |
|
|
* | Fix bogus len() call | Guido van Rossum | 1996-09-10 | 1 | -1/+1 |
|
|
* | renamed DbShelf->DbfilenameShelf;added BsdDbShelf (David Ely) | Guido van Rossum | 1995-08-11 | 1 | -5/+46 |
|
|
* | fix stupid bug (db should be dict) | Guido van Rossum | 1995-02-27 | 1 | -3/+3 |
|
|
* | minute comment changes | Guido van Rossum | 1995-02-16 | 1 | -1/+1 |
|
|
* | added __doc__ strings etc. | Guido van Rossum | 1995-02-09 | 1 | -7/+59 |
|
|
* | shelve.py: database of persistent objects, on top of pickle.py and anydbm.py | Guido van Rossum | 1995-01-10 | 1 | -0/+43 |
|
|