From 2396fa6537d79554ac694dbd2b0b30eeb3476c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florin=20Sp=C4=83tar?= Date: Wed, 8 Sep 2021 15:43:00 +0300 Subject: bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-27857) --- Python/dynload_hpux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/dynload_hpux.c') diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index e36d608c6d..a53373038e 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -13,7 +13,7 @@ #define FUNCNAME_PATTERN "%.20s_%.200s" #endif -const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, NULL}; +const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, ".sl", NULL}; dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix, const char *shortname, -- cgit v1.2.1