Commit 5a17de95 authored by Guido van Rossum's avatar Guido van Rossum

Prepare for final release.

parent 09a823d9
...@@ -46,19 +46,20 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -46,19 +46,20 @@ PERFORMANCE OF THIS SOFTWARE.
#define PY_RELEASE_LEVEL_BETA 0xB #define PY_RELEASE_LEVEL_BETA 0xB
#define PY_RELEASE_LEVEL_GAMMA 0xC #define PY_RELEASE_LEVEL_GAMMA 0xC
#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */ #define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
/* Higher for patch releases */
/* Version parsed out into numeric values */ /* Version parsed out into numeric values */
#define PY_MAJOR_VERSION 1 #define PY_MAJOR_VERSION 1
#define PY_MINOR_VERSION 5 #define PY_MINOR_VERSION 5
#define PY_MICRO_VERSION 2 #define PY_MICRO_VERSION 2
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
#define PY_RELEASE_SERIAL 1 #define PY_RELEASE_SERIAL 0
/* Version as a string */ /* Version as a string */
#define PY_VERSION "1.5.2c1" #define PY_VERSION "1.5.2"
/* Historic */ /* 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. /* 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 >= ... */ Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
......
This is Python version 1.5.2c1 -- released Apr 8, 1999 This is Python version 1.5.2 -- released April 13, 1999
====================================================== =======================================================
What's new in this release? What's new in this release?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment