patchlevel.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Newfangled version identification scheme.
  2. This scheme was added in Python 1.5.2b2; before that time, only PATCHLEVEL
  3. was available. To test for presence of the scheme, test for
  4. defined(PY_MAJOR_VERSION).
  5. When the major or minor version changes, the VERSION variable in
  6. configure.ac must also be changed.
  7. There is also (independent) API version information in modsupport.h.
  8. */
  9. /* Values for PY_RELEASE_LEVEL */
  10. #define PY_RELEASE_LEVEL_ALPHA 0xA
  11. #define PY_RELEASE_LEVEL_BETA 0xB
  12. #define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
  13. #define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
  14. /* Higher for patch releases */
  15. /* Version parsed out into numeric values */
  16. /*--start constants--*/
  17. #define PY_MAJOR_VERSION 2
  18. #define PY_MINOR_VERSION 7
  19. #define PY_MICRO_VERSION 12
  20. #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
  21. #define PY_RELEASE_SERIAL 0
  22. /* Version as a string */
  23. #define PY_VERSION "2.7.12"
  24. /*--end constants--*/
  25. /* Subversion Revision number of this file (not of the repository). Empty
  26. since Mercurial migration. */
  27. #define PY_PATCHLEVEL_REVISION ""
  28. /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
  29. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
  30. #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
  31. (PY_MINOR_VERSION << 16) | \
  32. (PY_MICRO_VERSION << 8) | \
  33. (PY_RELEASE_LEVEL << 4) | \
  34. (PY_RELEASE_SERIAL << 0))