summaryrefslogtreecommitdiffstats
path: root/Lib/anydbm.py
Commit message (Collapse)AuthorAgeFilesLines
* Oops, I had 'n' and 'c' mixed up in my mind. Get rid of the commentGuido van Rossum1998-04-281-5/+4
| | | | that wonders what the difference is and explain them properly.
* Inspired by Ben Sayer, rewritten the code and some of the comments toGuido van Rossum1998-04-281-14/+47
| | | | | | be more intelligent when the database already exists (use the module for the existing file, according to whichdb). Noted in the doc strings that there doesn't seem to be a different between 'c' and 'n'.
* inherit error from _mod.errorGuido van Rossum1996-01-251-0/+3
|
* change default flag to match dbm/gdbmGuido van Rossum1995-08-111-3/+3
|
* revamped somewhatGuido van Rossum1995-08-101-18/+19
|
* added __doc__ strings etc.Guido van Rossum1995-02-091-5/+46
|
* shelve.py: database of persistent objects, on top of pickle.py and anydbm.pyGuido van Rossum1995-01-101-0/+9
pickle.py: new low-level persistency module (used to be called flatten) dbmac.py: stupid dbm clone for the Mac anydbm.py: generic dbm interface (should be extended to support gdbm)