Go to the documentation of this file.
15 #define PY_RELEASE_LEVEL_ALPHA 0xA
16 #define PY_RELEASE_LEVEL_BETA 0xB
17 #define PY_RELEASE_LEVEL_GAMMA 0xC
18 #define PY_RELEASE_LEVEL_FINAL 0xF
23 #define PY_MAJOR_VERSION 2
24 #define PY_MINOR_VERSION 7
25 #define PY_MICRO_VERSION 6
26 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
27 #define PY_RELEASE_SERIAL 0
30 #define PY_VERSION "2.7.6"
35 #define PY_PATCHLEVEL_REVISION ""
39 #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
40 (PY_MINOR_VERSION << 16) | \
41 (PY_MICRO_VERSION << 8) | \
42 (PY_RELEASE_LEVEL << 4) | \
43 (PY_RELEASE_SERIAL << 0))
Copyright 2014 Google Inc. All rights reserved.