~ubuntu-branches/ubuntu/precise/python2.5/precise

« back to all changes in this revision

Viewing changes to Include/patchlevel.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-01-31 20:41:23 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100131204123-vourxnj86g6up33x
Tags: 2.5.5-1ubuntu1
* Merge with Debian; remaining changes:
  - Include the pregenerated documentation.
  - Set priority of python2.5-minimal to required.
  - Build python2.5-doc from the pregenerated documentation.
* Regenerate the included documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
/* Version parsed out into numeric values */
22
22
#define PY_MAJOR_VERSION        2
23
23
#define PY_MINOR_VERSION        5
24
 
#define PY_MICRO_VERSION        4
 
24
#define PY_MICRO_VERSION        5
25
25
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_FINAL
26
26
#define PY_RELEASE_SERIAL       0
27
27
 
28
28
/* Version as a string */
29
 
#define PY_VERSION              "2.5.4"
 
29
#define PY_VERSION              "2.5.5"
30
30
 
31
31
/* Subversion Revision number of this file (not of the repository) */
32
 
#define PY_PATCHLEVEL_REVISION  "$Revision: 67916 $"
 
32
#define PY_PATCHLEVEL_REVISION  "$Revision: 77872 $"
33
33
 
34
34
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
35
35
   Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */