~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Include/patchlevel.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
/*--start constants--*/
23
23
#define PY_MAJOR_VERSION        2
24
24
#define PY_MINOR_VERSION        6
25
 
#define PY_MICRO_VERSION        4
26
 
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_FINAL
27
 
#define PY_RELEASE_SERIAL       0
 
25
#define PY_MICRO_VERSION        5
 
26
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_GAMMA
 
27
#define PY_RELEASE_SERIAL       2
28
28
 
29
29
/* Version as a string */
30
 
#define PY_VERSION              "2.6.4"
 
30
#define PY_VERSION              "2.6.5rc2"
31
31
/*--end constants--*/
32
32
 
33
33
/* Subversion Revision number of this file (not of the repository) */
34
 
#define PY_PATCHLEVEL_REVISION  "$Revision: 75706 $"
 
34
#define PY_PATCHLEVEL_REVISION  "$Revision: 78822 $"
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 >= ... */