From: Guido van Rossum Date: Tue, 9 Apr 1996 02:39:15 +0000 (+0000) Subject: Under NT, change "long" sharedlib extension to ".dll". (Mark H.) X-Git-Tag: v1.4b1~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e71a947f8e0cb165979769076eb24d7d20a7ce24;p=python Under NT, change "long" sharedlib extension to ".dll". (Mark H.) --- diff --git a/Python/importdl.c b/Python/importdl.c index 0c1cd38894..551f8b4ff8 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -85,7 +85,7 @@ typedef void (*dl_funcptr)(); typedef FARPROC dl_funcptr; #define _DL_FUNCPTR_DEFINED #define SHORT_EXT ".pyd" -#define LONG_EXT "module.pyd" +#define LONG_EXT ".dll" #endif #ifdef NeXT