]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
NT dlls have .pyd extension instead of .dll
authorGuido van Rossum <guido@python.org>
Sat, 7 Jan 1995 12:36:02 +0000 (12:36 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 7 Jan 1995 12:36:02 +0000 (12:36 +0000)
Python/importdl.c

index f676e3f2df411e5dc46b5905543da994595869db..9afd9ec9630fd449c6c4f291b82674ab392bcc2f 100644 (file)
@@ -67,8 +67,8 @@ typedef void (*dl_funcptr)();
 #include <windows.h>
 typedef FARPROC dl_funcptr;
 #define _DL_FUNCPTR_DEFINED
-#define SHORT_EXT ".dll"
-#define LONG_EXT "module.dll"
+#define SHORT_EXT ".pyd"
+#define LONG_EXT "module.pyd"
 #endif
 
 #if defined(NeXT) || defined(WITH_RLD)