summaryrefslogtreecommitdiff
path: root/Modules/_bsddb.c
Commit message (Expand)AuthorAgeFilesLines
* bump module version to match supported berkeleydb versionGregory P. Smith2007-01-051-1/+1
* Support linking of the bsddb module against BerkeleyDB 4.5.xGregory P. Smith2007-01-051-0/+8
* Bug #1599782: Fix segfault on bsddb.db.DB().type().Neal Norwitz2006-11-211-2/+0
* Fixes a bug with bsddb.DB.stat where the flags and txn keywordGregory P. Smith2006-09-191-2/+2
* Handle malloc and fopen failures more gracefully.Neal Norwitz2006-08-131-2/+8
* - pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrenameGregory P. Smith2006-07-281-3/+3
* Ensure we don't write beyond errText. I think I got this right, butNeal Norwitz2006-07-231-10/+19
* Fix memory leak reported by valgrind while running test_subprocessNeal Norwitz2006-06-171-0/+2
* Get rid of function pointer cast.Martin v. Löwis2006-06-121-3/+3
* Cleanup Py_ssize_t a little (get rid of second #ifdef)Neal Norwitz2006-06-121-5/+2
* Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL.Neal Norwitz2006-06-111-4/+2
* BSequence_set_range(): Rev 46688 ("Fix a bunch ofTim Peters2006-06-061-1/+1
* Fix a bunch of parameter stringsNeal Norwitz2006-06-061-7/+7
* - bsddb: the __len__ method of a DB object has been fixed to return correctGregory P. Smith2006-06-051-6/+17
* * fix DBCursor.pget() bug with keyword argument names when no data= isGregory P. Smith2006-06-051-4/+4
* * add support for DBSequence objects [patch #1466734]Gregory P. Smith2006-06-051-6/+455
* * support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902]Gregory P. Smith2006-06-051-0/+25
* * support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885]Gregory P. Smith2006-06-051-0/+68
* fix a bug in the previous commit. don't leak empty list on error return andGregory P. Smith2006-06-051-4/+7
* bugfix: when log_archive was called with the DB_ARCH_REMOVE flag presentGregory P. Smith2006-06-051-5/+9
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-4/+4
* Fix bsddb.db.DBError derived exceptions so they can be unpickled.Gregory P. Smith2006-04-081-6/+22
* Fix another leak in bsddb, and avoid use of uninitialized value -- funny howThomas Wouters2006-03-121-1/+2
* Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful ofThomas Wouters2006-03-081-65/+73
* Add additional missing checks for return vals of PyTuple_New().Georg Brandl2006-03-071-66/+65
* Fix gcc 4.0.x warning about use of uninitialized value.Thomas Wouters2006-03-071-1/+1
* Coverity found bug: test result of PyTuple_New() against NULL before use.Thomas Wouters2006-03-071-6/+6
* Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct onThomas Wouters2006-03-011-4/+5
* Another bit of unconstification.Tim Peters2006-02-281-1/+1
* More unconsting.Martin v. Löwis2006-02-271-33/+33
* Merge ssize_t branch.Martin v. Löwis2006-02-151-3/+3
* maintain support for older python versions in this module so that itGregory P. Smith2006-01-301-0/+16
* Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVERGregory P. Smith2006-01-271-3/+18
* Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env.Neal Norwitz2006-01-251-3/+6
* commits sourceforge patch #1407992 by neil.norwitz.Gregory P. Smith2006-01-241-7/+7
* Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all theGregory P. Smith2006-01-241-2/+16
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix errors on 64-bit platforms. Will backportNeal Norwitz2006-01-051-4/+4
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-34/+44
* Get bsddb module to compile with version 3.2 of BSD DB.Neal Norwitz2005-10-201-0/+8
* remove c++ style commentGregory P. Smith2005-06-161-1/+1
* change set_bt_compare() callback comparison function to only take twoGregory P. Smith2005-06-061-10/+7
* additional sanity check. secondaryDB cannot be closed.Gregory P. Smith2005-06-061-0/+1
* fixes pybsddb SF bug id 1215432. DB.associate() would crash when aGregory P. Smith2005-06-061-5/+3
* pybsddb 4.3.2:Gregory P. Smith2005-06-041-24/+64
* pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparisonGregory P. Smith2005-06-031-1/+163
* fixed compilation against BerkeleyDB 3.2.9 (sf bug # 1077040)Gregory P. Smith2004-12-161-0/+8
* * Adds support for building against BerkeleyDB 4.3.21Gregory P. Smith2004-12-131-21/+74
* SF bug 1017405: the keys() values() and items() DB methods wereGregory P. Smith2004-09-041-1/+1
* Fix memory leak and bump the version per GregNeal Norwitz2004-07-091-2/+2