summaryrefslogtreecommitdiffstats
path: root/Lib/anydbm.py
Commit message (Collapse)AuthorAgeFilesLines
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
|
* dump the string exception fallback for anydbm.error.Skip Montanaro2002-03-181-5/+2
|
* Catch only the relevant exceptions instead of using a bare except clause.Fred Drake2001-05-111-1/+1
|
* removed __all__ from several modulesSkip Montanaro2001-02-181-2/+0
|
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
| | | | | | | | added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation.
* Whitespace standardization.Tim Peters2001-01-141-40/+40
|
* 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)