~ubuntu-branches/ubuntu/karmic/python2.6/karmic-proposed

« back to all changes in this revision

Viewing changes to Include/patchlevel.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-10-09 23:07:54 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091009230754-0ccehibkqf9a6wmv
Tags: 2.6.4~rc1-0ubuntu1
* Python 2.6.4 release candidate 1.
  - Issue #7068: Fixed the partial renaming that occured in r72594.
  - Issue #7042: Fix test_signal (test_itimer_virtual) failure on OS X 10.6.
* Remove the conflict with python-setuptools (fixed in issue #7068).
* Build _hashlib as a builtin. LP: #445530.
* python2.6-doc: Don't compress the sphinx inventory.
* python2.6-doc: Fix jquery.js symlink. LP: #447370.

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        3
26
 
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_FINAL
27
 
#define PY_RELEASE_SERIAL       0
 
25
#define PY_MICRO_VERSION        4
 
26
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_GAMMA
 
27
#define PY_RELEASE_SERIAL       1
28
28
 
29
29
/* Version as a string */
30
 
#define PY_VERSION              "2.6.3"
 
30
#define PY_VERSION              "2.6.4rc1"
31
31
/*--end constants--*/
32
32
 
33
33
/* Subversion Revision number of this file (not of the repository) */
34
 
#define PY_PATCHLEVEL_REVISION  "$Revision: 75183 $"
 
34
#define PY_PATCHLEVEL_REVISION  "$Revision: 75270 $"
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 >= ... */