[pypy-commit] pypy py3k: Easy fix for a cpyext test failure.

amauryfa noreply at buildbot.pypy.org
Sat Apr 27 01:27:17 CEST 2013


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r63672:3162f06e9e0a
Date: 2013-04-27 01:06 +0200
http://bitbucket.org/pypy/pypy/changeset/3162f06e9e0a/

Log:	Easy fix for a cpyext test failure.

diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -21,12 +21,12 @@
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION	3
 #define PY_MINOR_VERSION	2
-#define PY_MICRO_VERSION	2
+#define PY_MICRO_VERSION	3
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION		"3.2.2"
+#define PY_VERSION		"3.2.3"
 
 /* PyPy version as a string */
 #define PYPY_VERSION "2.0.0-beta2"


More information about the pypy-commit mailing list