From: Jeremy Hylton Date: Fri, 13 Oct 2000 23:05:44 +0000 (+0000) Subject: getting close X-Git-Tag: v2.0~47 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20da14c56d9562d15153553d3a199e154b505599;p=thirdparty%2FPython%2Fcpython.git getting close --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index fce0b3baafdd..2d0fb111bf6c 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 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL #define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.0c1" +#define PY_VERSION "2.0" /* Historic */ -#define PATCHLEVEL "2.0c1" +#define PATCHLEVEL "2.0" /* 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 >= ... */