]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add a '+' to the version to indicate this is a post-2.1.1-release CVS
authorGuido van Rossum <guido@python.org>
Fri, 19 Oct 2001 14:47:47 +0000 (14:47 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 19 Oct 2001 14:47:47 +0000 (14:47 +0000)
version.

Include/patchlevel.h

index 6768da349f6375002e72a7481f2f9172e6f1293e..93da7396a32a1129508297a356e7cf6de787f641 100644 (file)
 #define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "2.1.1"
+#define PY_VERSION             "2.1.1+"
 
 /* Historic */
-#define PATCHLEVEL             "2.1.1"
+#define PATCHLEVEL             "2.1.1+"
 
 /* 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 >= ... */