diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2003-07-31 02:06:22 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2003-07-31 02:06:22 (GMT) |
commit | 67e5582dfc6cd365d924a0033b2ac7363e8b304d (patch) | |
tree | 749f580d5f62992ab347a91707460ced51d6d636 /PC/python_nt.rc | |
parent | 3576f0a6a49511b03b62fe8bf4599e315b655939 (diff) | |
download | cpython-67e5582dfc6cd365d924a0033b2ac7363e8b304d.zip cpython-67e5582dfc6cd365d924a0033b2ac7363e8b304d.tar.gz cpython-67e5582dfc6cd365d924a0033b2ac7363e8b304d.tar.bz2 |
Complete move of windows builds to 2.4alpha
Diffstat (limited to 'PC/python_nt.rc')
-rw-r--r-- | PC/python_nt.rc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc index c2d1d9e..8b3858b 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -12,10 +12,10 @@ * PYTHON_DLL_NAME ditto. * MS_DLL_ID must match PY_VERSION in the Windows install script. */ -#define MS_DLL_ID "2.3" +#define MS_DLL_ID "2.4" #ifndef PYTHON_DLL_NAME -#define PYTHON_DLL_NAME "python23.dll" +#define PYTHON_DLL_NAME "python24.dll" #endif /* Nothing below this should need to be changed except for copyright @@ -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.3, + * For 2.4a0, * PY_MICRO_VERSION = 0 - * PY_RELEASE_LEVEL = 'final' = 0xf + * PY_RELEASE_LEVEL = 'alpha' = 0xa * PY_RELEASE_SERIAL = 0 * - * and 0*1000 + 15*10 + 0 = 150 + * and 0*1000 + 10*10 + 0 = 100 */ -#define FIELD3 150 +#define FIELD3 100 /* e.g., 2.1a2 * PY_VERSION comes from patchevel.h |