]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
update the version information in preparation for release
authorFred Drake <fdrake@acm.org>
Tue, 11 May 2004 15:21:20 +0000 (15:21 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 11 May 2004 15:21:20 +0000 (15:21 +0000)
(the documentation tools use this)

Include/patchlevel.h

index 4293e5c143743d1e2c49993741286d4bbb0f3262..d1db3c51bed8ce3207a1cd90d895870095268745 100644 (file)
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION       2
 #define PY_MINOR_VERSION       3
-#define PY_MICRO_VERSION       3
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
-#define PY_RELEASE_SERIAL      0
+#define PY_MICRO_VERSION       4
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_GAMMA
+#define PY_RELEASE_SERIAL      1
 
 /* Version as a string */
-#define PY_VERSION             "2.3.3"
+#define PY_VERSION             "2.3.4c1"
 
 /* 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 >= ... */