diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2003-11-02 09:10:16 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2003-11-02 09:10:16 (GMT) |
commit | dc113a8a06668c652895f6745808b1b04cbfc103 (patch) | |
tree | 2ec990ec2985c84b3711a644f280e04c41a4ab0b /Modules | |
parent | e2767171133ead86ec3aacc205d1d8365a0a2d07 (diff) | |
download | cpython-dc113a8a06668c652895f6745808b1b04cbfc103.zip cpython-dc113a8a06668c652895f6745808b1b04cbfc103.tar.gz cpython-dc113a8a06668c652895f6745808b1b04cbfc103.tar.bz2 |
* 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.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_bsddb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index 6cf733f..201f4dc 100644 --- a/Modules/_bsddb.c +++ b/Modules/_bsddb.c @@ -93,7 +93,7 @@ /* 40 = 4.0, 33 = 3.3; this will break if the second number is > 9 */ #define DBVER (DB_VERSION_MAJOR * 10 + DB_VERSION_MINOR) -#define PY_BSDDB_VERSION "4.2.2" +#define PY_BSDDB_VERSION "4.2.3" static char *rcs_id = "$Id$"; |