Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r55209:db6b32ccf1f2
Date: 2012-05-30 21:30 +0200
http://bitbucket.org/pypy/pypy/changeset/db6b32ccf1f2/

Log:    Advertise the correct Python version in our Python.h

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
@@ -19,14 +19,14 @@
                                        /* Higher for patch releases */
 
 /* Version parsed out into numeric values */
-#define PY_MAJOR_VERSION       2
-#define PY_MINOR_VERSION       7
+#define PY_MAJOR_VERSION       3
+#define PY_MINOR_VERSION       2
 #define PY_MICRO_VERSION       2
 #define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
 #define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "2.7.2"
+#define PY_VERSION             "3.2.2"
 
 /* PyPy version as a string */
 #define PYPY_VERSION "1.9.1"
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to