From: Gregory P. Smith Date: Sun, 21 Sep 2003 23:29:41 +0000 (+0000) Subject: raise pybsddb version number to 4.2.1 to differentiate between it and the X-Git-Tag: v2.4a1~1546 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7000225fbc78bf4cd0561093c8de419bfe0e2a68;p=thirdparty%2FPython%2Fcpython.git raise pybsddb version number to 4.2.1 to differentiate between it and the version in the python 2.3.1 tree. --- diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index f24c71327ecd..c6b569cbe399 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$";