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
*
Backout the original 'fix' to 1721309 which had no effect.
Neal Norwitz
2007-06-03
1
-5/+9
*
Whoops, need to pay attention to those test failures.
Neal Norwitz
2007-05-19
1
-1/+1
*
Clear data so random memory does not get freed. Will backport.
Neal Norwitz
2007-05-19
1
-0/+1
*
Accomodate 64 bit time_t in the _bsddb module.
Kristján Valur Jónsson
2007-04-26
1
-1/+21
*
bump module version to match supported berkeleydb version
Gregory P. Smith
2007-01-05
1
-1/+1
*
Support linking of the bsddb module against BerkeleyDB 4.5.x
Gregory P. Smith
2007-01-05
1
-0/+8
*
Bug #1599782: Fix segfault on bsddb.db.DB().type().
Neal Norwitz
2006-11-21
1
-2/+0
*
Fixes a bug with bsddb.DB.stat where the flags and txn keyword
Gregory P. Smith
2006-09-19
1
-2/+2
*
Handle malloc and fopen failures more gracefully.
Neal Norwitz
2006-08-13
1
-2/+8
*
- pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrename
Gregory P. Smith
2006-07-28
1
-3/+3
*
Ensure we don't write beyond errText. I think I got this right, but
Neal Norwitz
2006-07-23
1
-10/+19
*
Fix memory leak reported by valgrind while running test_subprocess
Neal Norwitz
2006-06-17
1
-0/+2
*
Get rid of function pointer cast.
Martin v. Löwis
2006-06-12
1
-3/+3
*
Cleanup Py_ssize_t a little (get rid of second #ifdef)
Neal Norwitz
2006-06-12
1
-5/+2
*
Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL.
Neal Norwitz
2006-06-11
1
-4/+2
*
BSequence_set_range(): Rev 46688 ("Fix a bunch of
Tim Peters
2006-06-06
1
-1/+1
*
Fix a bunch of parameter strings
Neal Norwitz
2006-06-06
1
-7/+7
*
- bsddb: the __len__ method of a DB object has been fixed to return correct
Gregory P. Smith
2006-06-05
1
-6/+17
*
* fix DBCursor.pget() bug with keyword argument names when no data= is
Gregory P. Smith
2006-06-05
1
-4/+4
*
* add support for DBSequence objects [patch #1466734]
Gregory P. Smith
2006-06-05
1
-6/+455
*
* support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902]
Gregory P. Smith
2006-06-05
1
-0/+25
*
* support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885]
Gregory P. Smith
2006-06-05
1
-0/+68
*
fix a bug in the previous commit. don't leak empty list on error return and
Gregory P. Smith
2006-06-05
1
-4/+7
*
bugfix: when log_archive was called with the DB_ARCH_REMOVE flag present
Gregory P. Smith
2006-06-05
1
-5/+9
*
Make use of METH_O and METH_NOARGS where possible.
Georg Brandl
2006-05-29
1
-4/+4
*
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
[next]