Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.3 KiB

  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. #define PY_MAJOR_VERSION 2
  17. #define PY_MINOR_VERSION 5
  18. #define PY_MICRO_VERSION 1
  19. #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
  20. #define PY_RELEASE_SERIAL 0
  21. /* Version as a string */
  22. #define PY_VERSION "2.5.1"
  23. /* Subversion Revision number of this file (not of the repository) */
  24. #define PY_PATCHLEVEL_REVISION "$Revision: 54863 $"
  25. /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
  26. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
  27. #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
  28. (PY_MINOR_VERSION << 16) | \
  29. (PY_MICRO_VERSION << 8) | \
  30. (PY_RELEASE_LEVEL << 4) | \
  31. (PY_RELEASE_SERIAL << 0))