diff options
author | Guido van Rossum <guido@python.org> | 1997-09-29 23:36:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-29 23:36:17 (GMT) |
commit | ff8c9dab1926d5f0078be434d24a32576953bd6f (patch) | |
tree | 92615e8e276062206816bc130b4524d2176c6942 /PC | |
parent | 6c1e5f2033ff9b1cfe6bda1da4ac6e3c88a47240 (diff) | |
download | cpython-ff8c9dab1926d5f0078be434d24a32576953bd6f.zip cpython-ff8c9dab1926d5f0078be434d24a32576953bd6f.tar.gz cpython-ff8c9dab1926d5f0078be434d24a32576953bd6f.tar.bz2 |
Bump version and store DLL version in a string variable (for branding).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/python_nt.rc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc index 8ccf1e3..81d6e36 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -8,12 +8,20 @@ #include "modsupport.h" #include "patchlevel.h" +#define MS_DLL_ID "1.5.0" + #define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0" #ifndef PYTHON_DLL_NAME -#define PYTHON_DLL_NAME "Python14.dll" +#define PYTHON_DLL_NAME "Python15.dll" #endif +// String Tables +STRINGTABLE DISCARDABLE +BEGIN + 1000, MS_DLL_ID +END + ///////////////////////////////////////////////////////////////////////////// // // Version |