index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_bsddb.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix bsddb.db.DBError derived exceptions so they can be unpickled.
Gregory P. Smith
2006-04-08
1
-6/+22
*
Fix another leak in bsddb, and avoid use of uninitialized value -- funny how
Thomas Wouters
2006-03-12
1
-1/+2
*
Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful of
Thomas Wouters
2006-03-08
1
-65/+73
*
Add additional missing checks for return vals of PyTuple_New().
Georg Brandl
2006-03-07
1
-66/+65
*
Fix gcc 4.0.x warning about use of uninitialized value.
Thomas Wouters
2006-03-07
1
-1/+1
*
Coverity found bug: test result of PyTuple_New() against NULL before use.
Thomas Wouters
2006-03-07
1
-6/+6
*
Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on
Thomas Wouters
2006-03-01
1
-4/+5
*
Another bit of unconstification.
Tim Peters
2006-02-28
1
-1/+1
*
More unconsting.
Martin v. Löwis
2006-02-27
1
-33/+33
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-3/+3
*
maintain support for older python versions in this module so that it
Gregory P. Smith
2006-01-30
1
-0/+16
*
Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER
Gregory P. Smith
2006-01-27
1
-3/+18
*
Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env.
Neal Norwitz
2006-01-25
1
-3/+6
*
commits sourceforge patch #1407992 by neil.norwitz.
Gregory P. Smith
2006-01-24
1
-7/+7
*
Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the
Gregory P. Smith
2006-01-24
1
-2/+16
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Fix errors on 64-bit platforms. Will backport
Neal Norwitz
2006-01-05
1
-4/+4
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-34/+44
*
Get bsddb module to compile with version 3.2 of BSD DB.
Neal Norwitz
2005-10-20
1
-0/+8
*
remove c++ style comment
Gregory P. Smith
2005-06-16
1
-1/+1
*
change set_bt_compare() callback comparison function to only take two
Gregory P. Smith
2005-06-06
1
-10/+7
*
additional sanity check. secondaryDB cannot be closed.
Gregory P. Smith
2005-06-06
1
-0/+1
*
fixes pybsddb SF bug id 1215432. DB.associate() would crash when a
Gregory P. Smith
2005-06-06
1
-5/+3
*
pybsddb 4.3.2:
Gregory P. Smith
2005-06-04
1
-24/+64
*
pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison
Gregory P. Smith
2005-06-03
1
-1/+163
*
fixed compilation against BerkeleyDB 3.2.9 (sf bug # 1077040)
Gregory P. Smith
2004-12-16
1
-0/+8
*
* Adds support for building against BerkeleyDB 4.3.21
Gregory P. Smith
2004-12-13
1
-21/+74
*
SF bug 1017405: the keys() values() and items() DB methods were
Gregory P. Smith
2004-09-04
1
-1/+1
*
Fix memory leak and bump the version per Greg
Neal Norwitz
2004-07-09
1
-2/+2
*
Cleanup support for older pythons (perhaps it should be removed?)
Neal Norwitz
2004-07-09
1
-53/+10
*
Adds support for DB.pget and DBCursor.pget methods.
Gregory P. Smith
2004-06-28
1
-3/+198
*
Add weakref support to all bsddb.db objects.
Gregory P. Smith
2004-06-28
1
-7/+127
*
raise the module minor version.
Gregory P. Smith
2004-06-27
1
-1/+1
*
SF patch / bug #967763
Gregory P. Smith
2004-06-27
1
-43/+76
*
A few more PyThreadState_Get to PyThreadState_GET conversions
Nicholas Bastin
2004-03-25
1
-1/+1
*
fixes SF bug 914019 - DB.has_key was not honoring its txn argument
Gregory P. Smith
2004-03-16
1
-2/+2
*
Fixes SF bug # 778421
Gregory P. Smith
2004-02-26
1
-2/+10
*
Removing TODO comment for None keys, as suggested by Neal Norwitz.
Gustavo Niemeyer
2004-01-20
1
-1/+1
*
When key is None, give up if _DB_get_type() returns -1 as well.
Gustavo Niemeyer
2004-01-20
1
-0/+2
*
Fixing #880531: raise TypeError when trying to use a None key with RECNO
Gustavo Niemeyer
2004-01-20
1
-0/+7
*
* SF patch 835100 - C++ // comments are not allowed. Use /* */
Gregory P. Smith
2003-11-03
1
-8/+8
*
* Use weakref's of DBCursor objects for the iterator cursors to avoid a
Gregory P. Smith
2003-11-03
1
-2/+38
*
* Fix the singlethreaded deadlocks occurring in the simple bsddb interface.
Gregory P. Smith
2003-11-02
1
-1/+1
*
Fix a tuple memory leak when raising DB, DBEnv and DBCursor "object
Gregory P. Smith
2003-11-02
1
-17/+15
*
bsddb3 4.2.2, adds DBCursor.get_current_size() method to return the length
Gregory P. Smith
2003-10-01
1
-1/+35
*
raise pybsddb version number to 4.2.1 to differentiate between it and the
Gregory P. Smith
2003-09-21
1
-1/+1
*
Adds basic support for BerkeleyDB 4.2.x. Compiles and passes tests; new
Gregory P. Smith
2003-09-21
1
-5/+44
*
Support DBEnv.set_shm_key() to allow multi-threaded multi-process
Gregory P. Smith
2003-08-28
1
-0/+16
*
heck environment closed status before closing a cursors. Fixes #763928.
Martin v. Löwis
2003-07-15
1
-1/+8
*
bsddb 4.1.6:
Gregory P. Smith
2003-07-09
1
-41/+110
[next]