diff options
author | Fred Drake <fdrake@acm.org> | 2003-12-18 15:06:58 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-12-18 15:06:58 (GMT) |
commit | 21c86b6151f74c9f3b2b55d0835d3a00ed365609 (patch) | |
tree | 57cb69ff759f253cd4a1351fa0f09a9351dc16a1 /Include/patchlevel.h | |
parent | be42922c5851bc1467559c30941d8913f5e6b159 (diff) | |
download | cpython-21c86b6151f74c9f3b2b55d0835d3a00ed365609.zip cpython-21c86b6151f74c9f3b2b55d0835d3a00ed365609.tar.gz cpython-21c86b6151f74c9f3b2b55d0835d3a00ed365609.tar.bz2 |
Bump version number for release.
Diffstat (limited to 'Include/patchlevel.h')
-rw-r--r-- | Include/patchlevel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index eb54432..4293e5c 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 3 #define PY_MICRO_VERSION 3 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 2 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.3.3c2" +#define PY_VERSION "2.3.3" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ |