diff options
author | Guido van Rossum <guido@python.org> | 2001-01-10 21:17:27 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-10 21:17:27 +0000 |
commit | be3285e1361e68a5e0e8f07a1166b75524e8537a (patch) | |
tree | 6630dd5a1643da0b152a025488a97feb6440450b /Python/dynload_shlib.c | |
parent | 434499d58e619d826616278fa342203c75cc9c3e (diff) | |
download | cpython-be3285e1361e68a5e0e8f07a1166b75524e8537a.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index 28f50b1f76..7c8bfd2c3b 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}, |