[Python-checkins] r43213 - python/branches/release24-maint/Include/patchlevel.h

anthony.baxter python-checkins at python.org
Wed Mar 22 05:00:21 CET 2006


Author: anthony.baxter
Date: Wed Mar 22 05:00:19 2006
New Revision: 43213

Modified:
   python/branches/release24-maint/Include/patchlevel.h
Log:
2.4.3c1 preparations

Modified: python/branches/release24-maint/Include/patchlevel.h
==============================================================================
--- python/branches/release24-maint/Include/patchlevel.h	(original)
+++ python/branches/release24-maint/Include/patchlevel.h	Wed Mar 22 05:00:19 2006
@@ -21,12 +21,12 @@
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION	2
 #define PY_MINOR_VERSION	4
-#define PY_MICRO_VERSION	2
-#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
+#define PY_MICRO_VERSION	3
+#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_GAMMA
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION		"2.4.2"
+#define PY_VERSION		"2.4.3c1"
 
 /* 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 >= ... */


More information about the Python-checkins mailing list