Changeset 388 for python/vendor/current/Include/patchlevel.h
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Include/patchlevel.h
r2 r388 7 7 8 8 When the major or minor version changes, the VERSION variable in 9 configure. inmust also be changed.9 configure.ac must also be changed. 10 10 11 11 There is also (independent) API version information in modsupport.h. … … 22 22 /*--start constants--*/ 23 23 #define PY_MAJOR_VERSION 2 24 #define PY_MINOR_VERSION 625 #define PY_MICRO_VERSION 524 #define PY_MINOR_VERSION 7 25 #define PY_MICRO_VERSION 6 26 26 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL 27 27 #define PY_RELEASE_SERIAL 0 28 28 29 29 /* Version as a string */ 30 #define PY_VERSION "2. 6.5"30 #define PY_VERSION "2.7.6" 31 31 /*--end constants--*/ 32 32 33 /* Subversion Revision number of this file (not of the repository) */ 34 #define PY_PATCHLEVEL_REVISION "$Revision: 79063 $" 33 /* Subversion Revision number of this file (not of the repository). Empty 34 since Mercurial migration. */ 35 #define PY_PATCHLEVEL_REVISION "" 35 36 36 37 /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Note:
See TracChangeset
for help on using the changeset viewer.