diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-02-02 00:08:15 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-02-02 00:08:15 (GMT) |
commit | 2cec3542c7d12197c22de2a4cec92f818ab8f3b6 (patch) | |
tree | bdadbb5946bf9edb7a12c2f336ae1a8b1219583f | |
parent | a762f4ca1872b01cfed34238b891a2dba4c1d88b (diff) | |
download | cpython-2cec3542c7d12197c22de2a4cec92f818ab8f3b6.zip cpython-2cec3542c7d12197c22de2a4cec92f818ab8f3b6.tar.gz cpython-2cec3542c7d12197c22de2a4cec92f818ab8f3b6.tar.bz2 |
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.
-rw-r--r-- | Include/patchlevel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 5e1aadf..888550a 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 >= ... */ |