Under NT, change "long" sharedlib extension to ".dll". (Mark H.)
diff --git a/Python/importdl.c b/Python/importdl.c
index 0c1cd38..551f8b4 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -85,7 +85,7 @@
 typedef FARPROC dl_funcptr;
 #define _DL_FUNCPTR_DEFINED
 #define SHORT_EXT ".pyd"
-#define LONG_EXT "module.pyd"
+#define LONG_EXT ".dll"
 #endif
 
 #ifdef NeXT