Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -1/+1 |
| | |||||
* | SF patch #1038388: __main__ for whichdb.py | Raymond Hettinger | 2004-10-20 | 1 | -0/+5 |
| | | | | (Contributed by Oleg Broytmann.) | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | patch #766650 - whichdb not identifying dbm DBs when dbm linked with gdbm | Andrew MacIntyre | 2003-07-11 | 1 | -2/+5 |
| | | | | | | | | | | | | | At this point, the problem appears particular to the OS/2 EMX port of gdbm (which is at v1.7.3) - this combination produces a .pag file but no .dir file. A more sophisticated patch which checks magic numbers when dbm.library indicates that dbm is linked to gdbm, and there is no .dir file, is still attached to the above patch entry for reconsideration after 2.3 is released. This checkin applies a workaround specific to the known failure case. | ||||
* | Patch #755087: Deal with emptied dumbdbm files correctly. | Martin v. Löwis | 2003-06-21 | 1 | -3/+3 |
| | |||||
* | Treat empty dat/dir pairs as dumbdbm. Fixes #744687. | Martin v. Löwis | 2003-06-14 | 1 | -3/+7 |
| | |||||
* | detect old version 2 hash files and return "bsddb185" as the appropriate | Skip Montanaro | 2003-05-06 | 1 | -3/+4 |
| | | | | module to load them | ||||
* | catch the situation where Berkeley DB is used to emulate dbm(3) library | Skip Montanaro | 2002-08-02 | 1 | -3/+24 |
| | | | | | functions. In this case, calling dbm.open("foo", "c") actually creates a file named "foo.db". | ||||
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -9/+4 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-03-16 | 1 | -1/+1 |
| | |||||
* | RISCOS changes by dschwertberger. | Guido van Rossum | 2001-03-02 | 1 | -4/+11 |
| | |||||
* | move import into function to avoid having to add an __all__ list... | Skip Montanaro | 2001-03-01 | 1 | -2/+2 |
| | |||||
* | Add missing 'try:'. Patch by Rob W. W. Hooft, #101071 (closed.) | Thomas Wouters | 2000-08-04 | 1 | -0/+1 |
| | |||||
* | Added support to recognize Python's internal "dumbdbm" database. | Moshe Zadka | 2000-07-29 | 1 | -0/+12 |
| | | | | This closes bug 200 on Jitterbug. | ||||
* | Untabify to pass the -tt test. | Fred Drake | 2000-02-10 | 1 | -1/+1 |
| | |||||
* | Skip Montanaro: | Guido van Rossum | 1999-06-08 | 1 | -2/+13 |
| | | | | | | | | | I guess in 1.5.2 a new module, whichdb, was added that attempts to divine the nature of a database file. This module doesn't know anything about Berkeley DB v2 files. In v2, Sleepycat added a 12-byte null pad in front of the old magic numbers (at least for hash and btree files). I've been using v2 for awhile and upgrading to 1.5.2 broke all my anydbm.open calls. I believe the following patch corrects the problem. | ||||
* | Support byte-swapped dbhash (bsddb) files. Found by Ben Sayer. | Guido van Rossum | 1998-04-28 | 1 | -1/+1 |
| | |||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -13/+13 |
| | |||||
* | Use new struct which supports standardized sizes | Guido van Rossum | 1997-01-11 | 1 | -5/+2 |
| | |||||
* | Function to guess which db package created a database. | Guido van Rossum | 1996-07-30 | 1 | -0/+60 |