summaryrefslogtreecommitdiffstats
path: root/Python/dynload_shlib.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-10 21:17:27 (GMT)
committerGuido van Rossum <guido@python.org>2001-01-10 21:17:27 (GMT)
commitfef124346eccd1b1637d699b5969a832f31e79f5 (patch)
tree565c978efb10038396ea2d5ffbbe0144b923920d /Python/dynload_shlib.c
parentb961920ff4dca0e716ba767aee8e74b6b0abe515 (diff)
downloadcpython-fef124346eccd1b1637d699b5969a832f31e79f5.zip
cpython-fef124346eccd1b1637d699b5969a832f31e79f5.tar.gz
cpython-fef124346eccd1b1637d699b5969a832f31e79f5.tar.bz2
Oops, one more part of the cygwin patch (SF patch #102409 by jlt63:
Cygwin Python DLL and Shared Extension Patch). Add module.dll as a valid extension. jlt63 writes: Note that his change essentially backs out the fix for bug #115973. Should ".pyd" be retained instead for posterity?
Diffstat (limited to 'Python/dynload_shlib.c')
-rw-r--r--Python/dynload_shlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c
index 28f50b1..7c8bfd2 100644
--- a/Python/dynload_shlib.c
+++ b/Python/dynload_shlib.c
@@ -29,8 +29,8 @@
const struct filedescr _PyImport_DynLoadFiletab[] = {
#ifdef __CYGWIN__
- {".pyd", "rb", C_EXTENSION},
{".dll", "rb", C_EXTENSION},
+ {"module.dll", "rb", C_EXTENSION},
#else
{".so", "rb", C_EXTENSION},
{"module.so", "rb", C_EXTENSION},