From 45aecf451a64fb1ebe5e74d0b00965ac8d99dff6 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 15 Mar 2006 04:58:47 +0000 Subject: Checkpoint. 218 tests are okay; 53 are failing. Done so far: - all classes are new-style (but ripping out classobject.[ch] isn't done) - int/int -> float - all exceptions must derive from BaseException - absolute import - 'as' and 'with' are keywords --- Include/patchlevel.h | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'Include/patchlevel.h') diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 2904fb6b3a..56cf762078 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -1,9 +1,5 @@ -/* Newfangled version identification scheme. - - This scheme was added in Python 1.5.2b2; before that time, only PATCHLEVEL - was available. To test for presence of the scheme, test for - defined(PY_MAJOR_VERSION). +/* Python version identification scheme. When the major or minor version changes, the VERSION variable in configure.in must also be changed. @@ -19,14 +15,14 @@ /* Higher for patch releases */ /* Version parsed out into numeric values */ -#define PY_MAJOR_VERSION 2 -#define PY_MINOR_VERSION 5 +#define PY_MAJOR_VERSION 0 +#define PY_MINOR_VERSION 0 #define PY_MICRO_VERSION 0 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA #define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.5a0" +#define PY_VERSION "3.0x" /* Subversion Revision number of this file (not of the repository) */ #define PY_PATCHLEVEL_REVISION "$Revision$" -- cgit v1.2.1