From e71a947f8e0cb165979769076eb24d7d20a7ce24 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 9 Apr 1996 02:39:15 +0000 Subject: [PATCH] Under NT, change "long" sharedlib extension to ".dll". (Mark H.) --- Python/importdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/importdl.c b/Python/importdl.c index 0c1cd38894f..551f8b4ff8a 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