blob: a090202209c1aa4321c26f56042cdb7caf55613e [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
Neal Norwitzb671c932006-08-18 04:01:38 +000024#define PY_MINOR_VERSION 6
Barry Warsawcf0d8ab2011-05-23 15:22:56 -040025#define PY_MICRO_VERSION 7
Barry Warsaw16ec24a2011-06-03 20:02:47 -040026#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
27#define PY_RELEASE_SERIAL 0
Guido van Rossumf1176c41999-01-03 12:40:24 +000028
29/* Version as a string */
Barry Warsaw16ec24a2011-06-03 20:02:47 -040030#define PY_VERSION "2.6.7"
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))