Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
| | |||||
* | dump the string exception fallback for anydbm.error. | Skip Montanaro | 2002-03-18 | 1 | -5/+2 |
| | |||||
* | Catch only the relevant exceptions instead of using a bare except clause. | Fred Drake | 2001-05-11 | 1 | -1/+1 |
| | |||||
* | removed __all__ from several modules | Skip Montanaro | 2001-02-18 | 1 | -2/+0 |
| | |||||
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -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 Peters | 2001-01-14 | 1 | -40/+40 |
| | |||||
* | Oops, I had 'n' and 'c' mixed up in my mind. Get rid of the comment | Guido van Rossum | 1998-04-28 | 1 | -5/+4 |
| | | | | that wonders what the difference is and explain them properly. | ||||
* | Inspired by Ben Sayer, rewritten the code and some of the comments to | Guido van Rossum | 1998-04-28 | 1 | -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.error | Guido van Rossum | 1996-01-25 | 1 | -0/+3 |
| | |||||
* | change default flag to match dbm/gdbm | Guido van Rossum | 1995-08-11 | 1 | -3/+3 |
| | |||||
* | revamped somewhat | Guido van Rossum | 1995-08-10 | 1 | -18/+19 |
| | |||||
* | added __doc__ strings etc. | Guido van Rossum | 1995-02-09 | 1 | -5/+46 |
| | |||||
* | shelve.py: database of persistent objects, on top of pickle.py and anydbm.py | Guido van Rossum | 1995-01-10 | 1 | -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) |