From c229e6e8ff6de61581f59266dc553f04f2c870c3 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 20 Feb 2012 19:41:11 +0100 Subject: Issue #14040: Remove rarely used file name suffixes for C extensions (under POSIX mainly). This will improve import performance a bit (especially under importlib). --- Python/dynload_next.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/dynload_next.c') diff --git a/Python/dynload_next.c b/Python/dynload_next.c index eb17950b457..5caff8bc9c4 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} }; -- cgit v1.2.3