]> granicus.if.org Git - python/commitdiff
Add the possibility of a gamma release (release candidate).
authorGuido van Rossum <guido@python.org>
Wed, 7 Apr 1999 16:00:20 +0000 (16:00 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 7 Apr 1999 16:00:20 +0000 (16:00 +0000)
Add '+' to string version number to indicate we're beyond b2 now.

Include/patchlevel.h

index d0c394f323cf608b2d74dd4f37f931ce2feae76f..01a860a67506fb601f71e271f3742273cc7f3dcc 100644 (file)
@@ -44,6 +44,7 @@ PERFORMANCE OF THIS SOFTWARE.
 /* Values for PY_RELEASE_LEVEL */
 #define PY_RELEASE_LEVEL_ALPHA 0xA
 #define PY_RELEASE_LEVEL_BETA  0xB
+#define PY_RELEASE_LEVEL_GAMMA 0xC
 #define PY_RELEASE_LEVEL_FINAL 0xF     /* Serial should be 0 here */
 
 /* Version parsed out into numeric values */
@@ -54,10 +55,10 @@ PERFORMANCE OF THIS SOFTWARE.
 #define PY_RELEASE_SERIAL      2
 
 /* Version as a string */
-#define PY_VERSION             "1.5.2b2"
+#define PY_VERSION             "1.5.2b2+"
 
 /* Historic */
-#define PATCHLEVEL             "1.5.2b2"
+#define PATCHLEVEL             "1.5.2b2+"
 
 /* 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 >= ... */