summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2003-09-21 23:29:41 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2003-09-21 23:29:41 (GMT)
commit7000225fbc78bf4cd0561093c8de419bfe0e2a68 (patch)
tree2025491206cd8b4a3a0a322d5b680c3b80addacd /Modules
parent175a6ac114ffc8d5c74769b50897faf3fb99f63a (diff)
downloadcpython-7000225fbc78bf4cd0561093c8de419bfe0e2a68.zip
cpython-7000225fbc78bf4cd0561093c8de419bfe0e2a68.tar.gz
cpython-7000225fbc78bf4cd0561093c8de419bfe0e2a68.tar.bz2
raise pybsddb version number to 4.2.1 to differentiate between it and the
version in the python 2.3.1 tree.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_bsddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index f24c713..c6b569c 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.0"
+#define PY_BSDDB_VERSION "4.2.1"
static char *rcs_id = "$Id$";