summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-13 14:47:26 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-13 14:47:26 (GMT)
commit9e478599634f65da3aa0c290f134daaa298a2d16 (patch)
tree19b95bf0a37dc93d7c26e4941a45773668931669 /Include
parent8f9fabd36056788fcfaf99a4be132978ea5e737a (diff)
downloadcpython-9e478599634f65da3aa0c290f134daaa298a2d16.zip
cpython-9e478599634f65da3aa0c290f134daaa298a2d16.tar.gz
cpython-9e478599634f65da3aa0c290f134daaa298a2d16.tar.bz2
Prepare for final release.
Diffstat (limited to 'Include')
-rw-r--r--Include/patchlevel.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 5762112..c7b78fd 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -46,19 +46,20 @@ PERFORMANCE OF THIS SOFTWARE.
#define PY_RELEASE_LEVEL_BETA 0xB
#define PY_RELEASE_LEVEL_GAMMA 0xC
#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
+ /* Higher for patch releases */
/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION 1
#define PY_MINOR_VERSION 5
#define PY_MICRO_VERSION 2
-#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL 1
+#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL 0
/* Version as a string */
-#define PY_VERSION "1.5.2c1"
+#define PY_VERSION "1.5.2"
/* Historic */
-#define PATCHLEVEL "1.5.2c1"
+#define PATCHLEVEL "1.5.2"
/* 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 >= ... */