diff options
author | Guido van Rossum <guido@python.org> | 1998-08-08 19:58:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-08 19:58:59 (GMT) |
commit | 67ab67218bb8c5f45f57ed8f8f5a5eec61a68c7c (patch) | |
tree | b1152cda11c5ddb8aa85007b6c08c7959576062e /PC/python_nt.rc | |
parent | e2d81cd4d7f151d07278fc0adfa556a3aa9a957f (diff) | |
download | cpython-67ab67218bb8c5f45f57ed8f8f5a5eec61a68c7c.zip cpython-67ab67218bb8c5f45f57ed8f8f5a5eec61a68c7c.tar.gz cpython-67ab67218bb8c5f45f57ed8f8f5a5eec61a68c7c.tar.bz2 |
Different version games:
- MS_DLL_ID is now set to "1.5" instead of "1.5.x" so Mark Hammond's
extensions won't have to be changed.
- FILEVERSION and PRODUCTVERSION are set to 1,5,2,1.
(The last number could be the build# or the alpha release# or so.)
Diffstat (limited to 'PC/python_nt.rc')
-rw-r--r-- | PC/python_nt.rc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc index 71361fe..7e1ea5c 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -8,7 +8,7 @@ #include "modsupport.h" #include "patchlevel.h" -#define MS_DLL_ID "1.5.2" +#define MS_DLL_ID "1.5" #define PYTHON_VERSION MS_DLL_ID "." PYTHON_API_STRING "\0" @@ -28,8 +28,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,1 - PRODUCTVERSION 1,0,0,1 + FILEVERSION 1,5,2,1 + PRODUCTVERSION 1,5,2,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L |