summaryrefslogtreecommitdiffstats
path: root/Modules/_bsddb.c
Commit message (Expand)AuthorAgeFilesLines
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-0/+4
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+9
* Cruft removal:Neal Norwitz2006-12-281-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-2/+8
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-24/+30
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-6/+6
* Merge the rest of the trunk.Thomas Wouters2006-06-081-17/+577
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-4/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-6/+22
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-221-6/+6
* 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
* Cleanup support for older pythons (perhaps it should be removed?)Neal Norwitz2004-07-091-53/+10
* Adds support for DB.pget and DBCursor.pget methods.Gregory P. Smith2004-06-281-3/+198
* Add weakref support to all bsddb.db objects.Gregory P. Smith2004-06-281-7/+127
* raise the module minor version.Gregory P. Smith2004-06-271-1/+1
* SF patch / bug #967763Gregory P. Smith2004-06-271-43/+76
* A few more PyThreadState_Get to PyThreadState_GET conversionsNicholas Bastin2004-03-251-1/+1
* fixes SF bug 914019 - DB.has_key was not honoring its txn argumentGregory P. Smith2004-03-161-2/+2
* Fixes SF bug # 778421Gregory P. Smith2004-02-261-2/+10
* Removing TODO comment for None keys, as suggested by Neal Norwitz.Gustavo Niemeyer2004-01-201-1/+1
* When key is None, give up if _DB_get_type() returns -1 as well.Gustavo Niemeyer2004-01-201-0/+2
* Fixing #880531: raise TypeError when trying to use a None key with RECNOGustavo Niemeyer2004-01-201-0/+7