]> granicus.if.org Git - python/commitdiff
Removed special Windows defines, at Mark Hammond's request.
authorGuido van Rossum <guido@python.org>
Mon, 29 Sep 1997 23:29:08 +0000 (23:29 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 29 Sep 1997 23:29:08 +0000 (23:29 +0000)
Include/modsupport.h

index 7b1cae809c66d4c6a130536e3438410d0b9dc3ae..654532941d750b30e86bc137a37bfe25a5802837 100644 (file)
@@ -92,14 +92,10 @@ extern PyObject *Py_VaBuildValue Py_PROTO((char *, va_list));
 */
 
 #ifdef MS_WINDOWS
-/* Special defines for Windows versions.  MS_DLL_ID is the key
-   used in the registry.
-   The full MS_DLL_VERSION_ID is imbedded in the core DLL, and
-   is so installers can determine incremental changes.
-*/
-#define MS_DLL_ID "1.5.0"
-#define MS_DLL_VERSION_ID       MS_DLL_ID "." PYTHON_API_STRING
-
+/* Special defines for Windows versions used to live here.  Things
+   have changed, and the "Version" is now in a global string variable.
+   Reason for this is that this for easier branding of a "custom DLL"
+   without actually needing a recompile.  */
 #endif /* MS_WINDOWS */
 
 #ifdef Py_TRACE_REFS