From: Fred Drake Date: Tue, 8 May 2001 19:02:27 +0000 (+0000) Subject: Fix the version information to reflect that this is the maintenance X-Git-Tag: v2.0.1c1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f6982a96ffc3e1315214550e0fbf160f45b09a6;p=thirdparty%2FPython%2Fcpython.git Fix the version information to reflect that this is the maintenance branch. --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 2d0fb111bf6c..7764fb8b3b64 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -21,15 +21,15 @@ /* Version parsed out into numeric values */ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 0 -#define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_MICRO_VERSION 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA #define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.0" +#define PY_VERSION "2.0.1a1" /* Historic */ -#define PATCHLEVEL "2.0" +#define PATCHLEVEL "2.0.1a1" /* 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 >= ... */