summaryrefslogtreecommitdiff
path: root/Modules/_bsddb.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #9675: Final touchJesus Cea2010-11-081-2/+4
* Issue #9675: better error handling in bsddbJesus Cea2010-11-051-2/+15
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-173/+173
* pybsddb 4.8.4 integration. Please, comment in issue #8156Jesus Cea2010-03-221-237/+2643
* - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x.Matthias Klose2010-03-151-3/+26
* #7808: Fix reference leaks in _bsddb and related tests.Florent Xicluna2010-03-011-3/+4
* Bugfix for issue3885 and 'DB.verify()' crash.Jesus Cea2008-09-231-27/+86
* Fix some leaks - Neal NorwitzJesus Cea2008-09-031-3/+5
* Update bsddb code to version 4.7.3pre2. This code shouldJesus Cea2008-08-311-35/+113
* bsddb module updated to version 4.7.2devel9.Jesus Cea2008-07-231-525/+816
* Define macros so that this still compiles on Python prior to r63675.Gregory P. Smith2008-05-261-0/+11
* Renamed PyString to PyBytesChristian Heimes2008-05-261-14/+14
* bsddb module updated to version 4.7.0Jesus Cea2008-05-221-5/+84
* issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_getGregory P. Smith2008-05-171-21/+22
* bsddb module updated to version 4.6.4Jesus Cea2008-05-131-292/+1398
* Fix typo.Martin v. Löwis2008-04-241-1/+1
* Merge this fix from the pybsddb tree:Gregory P. Smith2008-02-031-2/+6
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-15/+15
* * db->get_types is only available in BerkeleyDB >= 4.2Gregory P. Smith2007-11-051-0/+7
* Add the bsddb.db.DBEnv.lock_id_free method.Gregory P. Smith2007-11-051-0/+21
* Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags andGregory P. Smith2007-11-051-15/+2
* Fix bug introduced in revision 58385. Database keys could no longerGregory P. Smith2007-11-011-1/+7
* Get this module to compile with bsddb versions prior to 4.3Neal Norwitz2007-10-121-0/+2
* Get rid of compiler warning about retval being used (returned) withoutNeal Norwitz2007-10-121-1/+1
* Fix a double free when positioning a database cursor to a non-existantGregory P. Smith2007-10-091-1/+13
* Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C APIGregory P. Smith2007-10-091-188/+25
* Stab in the dark attempt to fix the test_bsddb3 failure on sparc and S-390Gregory P. Smith2007-10-061-1/+7
* email address updateGregory P. Smith2007-09-091-4/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-14/+14
* Backout the original 'fix' to 1721309 which had no effect.Neal Norwitz2007-06-031-5/+9
* Whoops, need to pay attention to those test failures.Neal Norwitz2007-05-191-1/+1
* Clear data so random memory does not get freed. Will backport.Neal Norwitz2007-05-191-0/+1
* Accomodate 64 bit time_t in the _bsddb module.Kristján Valur Jónsson2007-04-261-1/+21
* 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