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: [PATCH] bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-27857) --- .../Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst | 1 + Python/dynload_hpux.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst b/Misc/NEWS.d/next/Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst new file mode 100644 index 00000000000..02e11ae94e4 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst @@ -0,0 +1 @@ +Added fallback to extension modules with '.sl' suffix on HP-UX \ No newline at end of file diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index e36d608c6dc..a53373038ed 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,