~ubuntu-branches/ubuntu/natty/python3.2/natty-security

« back to all changes in this revision

Viewing changes to Include/patchlevel.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-02-14 16:12:14 UTC
  • mfrom: (10.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110214161214-f5vwa226kebccmt9
Tags: 3.2~rc3-1
Python 3.2 release candidate 3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define PY_MINOR_VERSION        2
21
21
#define PY_MICRO_VERSION        0
22
22
#define PY_RELEASE_LEVEL        PY_RELEASE_LEVEL_GAMMA
23
 
#define PY_RELEASE_SERIAL       1
 
23
#define PY_RELEASE_SERIAL       3
24
24
 
25
25
/* Version as a string */
26
 
#define PY_VERSION              "3.2rc1"
 
26
#define PY_VERSION              "3.2rc3"
27
27
/*--end constants--*/
28
28
 
29
29
/* Subversion Revision number of this file (not of the repository) */
30
 
#define PY_PATCHLEVEL_REVISION  "$Revision: 88035 $"
 
30
#define PY_PATCHLEVEL_REVISION  "$Revision: 88413 $"
31
31
 
32
32
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
33
33
   Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */