[Python-checkins] python/dist/src/Modules _bsddb.c,1.22,1.23
greg at users.sourceforge.net
greg at users.sourceforge.net
Sun Nov 2 04:10:18 EST 2003
Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv30540/Modules
Modified Files:
_bsddb.c
Log Message:
* Fix the singlethreaded deadlocks occurring in the simple bsddb interface.
* Add support for multiple iterator/generator objects at once on the simple
bsddb _DBWithCursor interface.
Index: _bsddb.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_bsddb.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** _bsddb.c 2 Nov 2003 08:06:29 -0000 1.22
--- _bsddb.c 2 Nov 2003 09:10:15 -0000 1.23
***************
*** 94,98 ****
#define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR)
! #define PY_BSDDB_VERSION "4.2.2"
static char *rcs_id = "$Id$";
--- 94,98 ----
#define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR)
! #define PY_BSDDB_VERSION "4.2.3"
static char *rcs_id = "$Id$";
More information about the Python-checkins
mailing list