summaryrefslogtreecommitdiff
path: root/Include/patchlevel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/patchlevel.h')
-rw-r--r--Include/patchlevel.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 873f02d919..d6974604a2 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -21,17 +21,18 @@
/* Version parsed out into numeric values */
/*--start constants--*/
#define PY_MAJOR_VERSION 2
-#define PY_MINOR_VERSION 6
-#define PY_MICRO_VERSION 7
+#define PY_MINOR_VERSION 7
+#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.6.7+"
+#define PY_VERSION "2.7.2+"
/*--end constants--*/
-/* Subversion Revision number of this file (not of the repository) */
-#define PY_PATCHLEVEL_REVISION "$Revision$"
+/* Subversion Revision number of this file (not of the repository). Empty
+ since Mercurial migration. */
+#define PY_PATCHLEVEL_REVISION ""
/* 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 >= ... */