[Python-checkins] r73581 - python/branches/py3k/Include/patchlevel.h

benjamin.peterson python-checkins at python.org
Sun Jun 28 00:00:01 CEST 2009


Author: benjamin.peterson
Date: Sun Jun 28 00:00:01 2009
New Revision: 73581

Log:
fix mistake in version bump

Modified:
   python/branches/py3k/Include/patchlevel.h

Modified: python/branches/py3k/Include/patchlevel.h
==============================================================================
--- python/branches/py3k/Include/patchlevel.h	(original)
+++ python/branches/py3k/Include/patchlevel.h	Sun Jun 28 00:00:01 2009
@@ -17,13 +17,13 @@
 /* Version parsed out into numeric values */
 /*--start constants--*/
 #define PY_MAJOR_VERSION	3
-#define PY_MINOR_VERSION	1
+#define PY_MINOR_VERSION	2
 #define PY_MICRO_VERSION	0
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_ALPHA
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION      	"3.1a0+"
+#define PY_VERSION      	"3.2a0"
 /*--end constants--*/
 
 /* Subversion Revision number of this file (not of the repository) */


More information about the Python-checkins mailing list