summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-04-09 02:39:15 (GMT)
committerGuido van Rossum <guido@python.org>1996-04-09 02:39:15 (GMT)
commite71a947f8e0cb165979769076eb24d7d20a7ce24 (patch)
tree3727183b8565a5d196a4d7f5daf4348bd1cea095 /Python
parentc606fe186f4b2e1d962651ae3ea34325c65b83dc (diff)
downloadcpython-e71a947f8e0cb165979769076eb24d7d20a7ce24.zip
cpython-e71a947f8e0cb165979769076eb24d7d20a7ce24.tar.gz
cpython-e71a947f8e0cb165979769076eb24d7d20a7ce24.tar.bz2
Under NT, change "long" sharedlib extension to ".dll". (Mark H.)
Diffstat (limited to 'Python')
-rw-r--r--Python/importdl.c2
1 files changed, 1 insertions, 1 deletions
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 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