From: Tim Peters Date: Sat, 2 Feb 2002 00:08:15 +0000 (+0000) Subject: Change the version string from "2.2+" to "2.3a0". disutils peels off X-Git-Tag: v2.3c1~6743 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cec3542c7d12197c22de2a4cec92f818ab8f3b6;p=python Change the version string from "2.2+" to "2.3a0". disutils peels off the first 3 characters of this string in several places, so for as long as they remain "2.2" it confuses the heck out of attempts to build 2.3 stuff using distutils. --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 5e1aadf299..888550a22e 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,7 +26,7 @@ #define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.2+" +#define PY_VERSION "2.3a0" /* 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 >= ... */