summaryrefslogtreecommitdiffstats
path: root/Python/dynload_next.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-20 18:41:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-20 18:41:11 (GMT)
commitc229e6e8ff6de61581f59266dc553f04f2c870c3 (patch)
tree3183a8ab52345140643c99700cd7b828aba7eed8 /Python/dynload_next.c
parentea6b4d5f70469071912e81cb29319996cfd990e0 (diff)
downloadcpython-c229e6e8ff6de61581f59266dc553f04f2c870c3.zip
cpython-c229e6e8ff6de61581f59266dc553f04f2c870c3.tar.gz
cpython-c229e6e8ff6de61581f59266dc553f04f2c870c3.tar.bz2
Issue #14040: Remove rarely used file name suffixes for C extensions (under POSIX mainly).
This will improve import performance a bit (especially under importlib).
Diffstat (limited to 'Python/dynload_next.c')
-rw-r--r--Python/dynload_next.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/dynload_next.c b/Python/dynload_next.c
index eb17950..5caff8b 100644
--- a/Python/dynload_next.c
+++ b/Python/dynload_next.c
@@ -10,7 +10,6 @@
const struct filedescr _PyImport_DynLoadFiletab[] = {
{".so", "rb", C_EXTENSION},
- {"module.so", "rb", C_EXTENSION},
{0, 0}
};