From: Guido van Rossum Date: Sat, 7 Jan 1995 12:36:02 +0000 (+0000) Subject: NT dlls have .pyd extension instead of .dll X-Git-Tag: v1.2b1~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fb1da76ffd09dc0c0d83cd14434d1bd617e7cb5;p=thirdparty%2FPython%2Fcpython.git NT dlls have .pyd extension instead of .dll --- diff --git a/Python/importdl.c b/Python/importdl.c index f676e3f2df41..9afd9ec9630f 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -67,8 +67,8 @@ typedef void (*dl_funcptr)(); #include 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)