/Include/patchlevel.h

http://unladen-swallow.googlecode.com/ · C Header · 43 lines · 17 code · 6 blank · 20 comment · 0 complexity · 7dcf388ebf4ae45f5119ab39e9e2cb6b MD5 · raw file

  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.in 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 6
  19. #define PY_MICRO_VERSION 4
  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.6.4"
  24. #define UNLADEN_VERSION "2009Q4"
  25. /*--end constants--*/
  26. /* Subversion Revision number of this file (not of the repository) */
  27. #define PY_PATCHLEVEL_REVISION "$Revision: 75706 $"
  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))