diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:45:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:45:34 (GMT) |
commit | 3209410cb53457c0aa2facceb8d9a6ad24e1702d (patch) | |
tree | 0d7a58a5970f7cced1ead38b9fa9a7c6a9d24369 /PC | |
parent | 4e42b31d2e4f1f4fb49a1aef171c5e9c0c80dd56 (diff) | |
download | cpython-3209410cb53457c0aa2facceb8d9a6ad24e1702d.zip cpython-3209410cb53457c0aa2facceb8d9a6ad24e1702d.tar.gz cpython-3209410cb53457c0aa2facceb8d9a6ad24e1702d.tar.bz2 |
Bump version number to 2.3b1.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/python_nt.rc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc index 69415ca..801ae29 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -33,14 +33,14 @@ * but that neither gives an error nor comes anywhere close to working. The * following comment and #define are output from PCbuild\field3.py: * - * For 2.3a2, + * For 2.3b1, * PY_MICRO_VERSION = 0 - * PY_RELEASE_LEVEL = 'alpha' = 0xa - * PY_RELEASE_SERIAL = 2 + * PY_RELEASE_LEVEL = 'beta' = 0xb + * PY_RELEASE_SERIAL = 1 * - * and 0*1000 + 10*10 + 2 = 102 + * and 0*1000 + 11*10 + 1 = 111 */ -#define FIELD3 102 +#define FIELD3 111 /* e.g., 2.1a2 * PY_VERSION comes from patchevel.h |