diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-20 19:41:11 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-20 19:41:11 +0100 |
commit | 84a9491874cb99e24227206345f5a4b6060e27c8 (patch) | |
tree | 551c20004a5bc3a90eda1287ec468b1738c1805a /Python/dynload_hpux.c | |
parent | 008913e13d1e5e4f221185a4b2456e53a77e9ce8 (diff) | |
download | cpython-84a9491874cb99e24227206345f5a4b6060e27c8.tar.gz |
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_hpux.c')
-rw-r--r-- | Python/dynload_hpux.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index 3ebbbad01f..1004010902 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -15,7 +15,6 @@ const struct filedescr _PyImport_DynLoadFiletab[] = { {SHLIB_EXT, "rb", C_EXTENSION}, - {"module"SHLIB_EXT, "rb", C_EXTENSION}, {0, 0} }; |