[Python-checkins] r66416 - python/trunk/Include/patchlevel.h

barry.warsaw python-checkins at python.org
Sat Sep 13 01:35:49 CEST 2008


Author: barry.warsaw
Date: Sat Sep 13 01:35:48 2008
New Revision: 66416

Log:
Fix the release level

Modified:
   python/trunk/Include/patchlevel.h

Modified: python/trunk/Include/patchlevel.h
==============================================================================
--- python/trunk/Include/patchlevel.h	(original)
+++ python/trunk/Include/patchlevel.h	Sat Sep 13 01:35:48 2008
@@ -23,8 +23,8 @@
 #define PY_MAJOR_VERSION	2
 #define PY_MINOR_VERSION	6
 #define PY_MICRO_VERSION	0
-#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
-#define PY_RELEASE_SERIAL	0
+#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_GAMMA
+#define PY_RELEASE_SERIAL	1
 
 /* Version as a string */
 #define PY_VERSION      	"2.6rc1"


More information about the Python-checkins mailing list