bump to 3.1.3rc1
[python/dscho.git] / Include / patchlevel.h
blobd599c9702cedaa0da269740972fef78d8ac0bffc
2 /* Python version identification scheme.
4 When the major or minor version changes, the VERSION variable in
5 configure.in must also be changed.
7 There is also (independent) API version information in modsupport.h.
8 */
10 /* Values for PY_RELEASE_LEVEL */
11 #define PY_RELEASE_LEVEL_ALPHA 0xA
12 #define PY_RELEASE_LEVEL_BETA 0xB
13 #define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
14 #define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
15 /* Higher for patch releases */
17 /* Version parsed out into numeric values */
18 /*--start constants--*/
19 #define PY_MAJOR_VERSION 3
20 #define PY_MINOR_VERSION 1
21 #define PY_MICRO_VERSION 3
22 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23 #define PY_RELEASE_SERIAL 1
25 /* Version as a string */
26 #define PY_VERSION "3.1.3rc1"
27 /*--end constants--*/
29 /* Subversion Revision number of this file (not of the repository) */
30 #define PY_PATCHLEVEL_REVISION "$Revision$"
32 /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
33 Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
34 #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
35 (PY_MINOR_VERSION << 16) | \
36 (PY_MICRO_VERSION << 8) | \
37 (PY_RELEASE_LEVEL << 4) | \
38 (PY_RELEASE_SERIAL << 0))