diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-12-21 22:06:12 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-12-21 22:06:12 (GMT) |
commit | 83a3f0c3050ab3abcf1c3edf434754862b589569 (patch) | |
tree | 496499bf894757d36297c7878d6df203127c76fe /PC | |
parent | af8446f8238c58b032189c28429e03b7fb4bcffc (diff) | |
download | cpython-83a3f0c3050ab3abcf1c3edf434754862b589569.zip cpython-83a3f0c3050ab3abcf1c3edf434754862b589569.tar.gz cpython-83a3f0c3050ab3abcf1c3edf434754862b589569.tar.bz2 |
Windows build: close out 2.2, prep for 2.3.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 4 | ||||
-rw-r--r-- | PC/python_nt.rc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 20792ac..6402f1d 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -333,9 +333,9 @@ typedef int pid_t; more (other compilers will still need to do so, but that's taken care of by the Distutils, so it's not a problem). */ #ifdef _DEBUG -#pragma comment(lib,"python22_d.lib") +#pragma comment(lib,"python23_d.lib") #else -#pragma comment(lib,"python22.lib") +#pragma comment(lib,"python23.lib") #endif #endif /* USE_DL_EXPORT */ diff --git a/PC/python_nt.rc b/PC/python_nt.rc index e90f4c7..8778998 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -13,7 +13,7 @@ * PYTHON_DLL_NAME ditto. * MS_DLL_ID must match PY_VERSION in the Windows install script. */ -#define MS_DLL_ID "2.2" +#define MS_DLL_ID "2.3" #ifndef PYTHON_DLL_NAME #define PYTHON_DLL_NAME "python22.dll" @@ -73,7 +73,7 @@ BEGIN VALUE "FileDescription", "Python Core\0" VALUE "FileVersion", PYTHON_VERSION VALUE "InternalName", "Python DLL\0" - VALUE "LegalCopyright", "Copyright © 2001 Python Software Foundation. Copyright © 2000 BeOpen.com. Copyright © 1995-2001 CNRI. Copyright © 1991-1995 SMC.\0" + VALUE "LegalCopyright", "Copyright © 2001-2002 Python Software Foundation. Copyright © 2000 BeOpen.com. Copyright © 1995-2001 CNRI. Copyright © 1991-1995 SMC.\0" VALUE "OriginalFilename", PYTHON_DLL_NAME "\0" VALUE "ProductName", "Python\0" VALUE "ProductVersion", PYTHON_VERSION |