blob: 2c4a69ade57a60bd505bfb1f5fa21aff600f986f [file] [log] [blame]
Guido van Rossumf1176c41999-01-03 12:40:24 +00001
2/* Newfangled version identification scheme.
3
4 This scheme was added in Python 1.5.2b2; before that time, only PATCHLEVEL
5 was available. To test for presence of the scheme, test for
6 defined(PY_MAJOR_VERSION).
7
8 When the major or minor version changes, the VERSION variable in
9 configure.in must also be changed.
10
11 There is also (independent) API version information in modsupport.h.
12*/
13
14/* Values for PY_RELEASE_LEVEL */
15#define PY_RELEASE_LEVEL_ALPHA 0xA
16#define PY_RELEASE_LEVEL_BETA 0xB
Anthony Baxter49d42132004-11-15 15:03:25 +000017#define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
Guido van Rossumf1176c41999-01-03 12:40:24 +000018#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
Guido van Rossum9e478591999-04-13 14:47:26 +000019 /* Higher for patch releases */
Guido van Rossumf1176c41999-01-03 12:40:24 +000020
21/* Version parsed out into numeric values */
Barry Warsaw9649cdd2008-04-03 04:10:02 +000022/*--start constants--*/
Guido van Rossum632ea6e2000-06-29 22:29:24 +000023#define PY_MAJOR_VERSION 2
Barry Warsaw12582c92008-10-02 03:33:51 +000024#define PY_MINOR_VERSION 7
Guido van Rossum21a50bd2000-03-29 01:46:45 +000025#define PY_MICRO_VERSION 0
Barry Warsaw12582c92008-10-02 03:33:51 +000026#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
Barry Warsawafa14362008-10-01 21:46:40 +000027#define PY_RELEASE_SERIAL 0
Guido van Rossumf1176c41999-01-03 12:40:24 +000028
29/* Version as a string */
Barry Warsaw12582c92008-10-02 03:33:51 +000030#define PY_VERSION "2.7a0"
Barry Warsaw9649cdd2008-04-03 04:10:02 +000031/*--end constants--*/
Guido van Rossumf1176c41999-01-03 12:40:24 +000032
Martin v. Löwis43b57802006-01-05 23:38:54 +000033/* Subversion Revision number of this file (not of the repository) */
34#define PY_PATCHLEVEL_REVISION "$Revision$"
35
Guido van Rossumf1176c41999-01-03 12:40:24 +000036/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
37 Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
38#define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
39 (PY_MINOR_VERSION << 16) | \
40 (PY_MICRO_VERSION << 8) | \
41 (PY_RELEASE_LEVEL << 4) | \
42 (PY_RELEASE_SERIAL << 0))