~peter-pearse/ubuntu/natty/python2.6/prop003

« back to all changes in this revision

Viewing changes to Include/patchlevel.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-20 03:57:17 UTC
  • mfrom: (1.1.8 upstream) (10.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20100320035717-xg6wzg0snk0o3jf2
Tags: 2.6.5-1ubuntu1
Merge with Debian (2.6.5-1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define PY_MAJOR_VERSION        2
24
24
#define PY_MINOR_VERSION        6
25
25
#define PY_MICRO_VERSION        5
26
 
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_GAMMA
27
 
#define PY_RELEASE_SERIAL       2
 
26
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_FINAL
 
27
#define PY_RELEASE_SERIAL       0
28
28
 
29
29
/* Version as a string */
30
 
#define PY_VERSION              "2.6.5rc2"
 
30
#define PY_VERSION              "2.6.5"
31
31
/*--end constants--*/
32
32
 
33
33
/* Subversion Revision number of this file (not of the repository) */
34
 
#define PY_PATCHLEVEL_REVISION  "$Revision: 78822 $"
 
34
#define PY_PATCHLEVEL_REVISION  "$Revision: 79063 $"
35
35
 
36
36
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
37
37
   Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */