From: Tim Peters Date: Fri, 22 Jun 2001 06:43:01 +0000 (+0000) Subject: We surely intended to fiddle the version number #defines for this release. X-Git-Tag: v2.0.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68a2fa32ecb535086f428c59d50d3a4a526ab490;p=thirdparty%2FPython%2Fcpython.git We surely intended to fiddle the version number #defines for this release. --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index e724701ebb9c..cf7ef6fefb81 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,14 +22,14 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 0 #define PY_MICRO_VERSION 1 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.0.1c1" +#define PY_VERSION "2.0.1" /* Historic */ -#define PATCHLEVEL "2.0.1c1" +#define PATCHLEVEL "2.0.1" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */