]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix the version information to reflect that this is the maintenance
authorFred Drake <fdrake@acm.org>
Tue, 8 May 2001 19:02:27 +0000 (19:02 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 8 May 2001 19:02:27 +0000 (19:02 +0000)
branch.

Include/patchlevel.h

index 2d0fb111bf6cd80bcf16914f51754a6a4f8ad2af..7764fb8b3b6435599fb1b6e8bbdcee5bb90bb0e1 100644 (file)
 /* 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 >= ... */