From d4d928e4951e9396a29bf2964fe7601203768084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florin=20Sp=C4=83tar?= Date: Fri, 20 Aug 2021 13:27:25 +0300 Subject: [PATCH 1/4] Added fallback to extension modules with '.sl' suffix on HP-UX --- Python/dynload_hpux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index e36d608c6dca44..a53373038ed859 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, From a7ff785b3d918c4f9b0b3f5302afb9ac0d7e6993 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Fri, 3 Sep 2021 10:47:22 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst diff --git a/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst b/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst new file mode 100644 index 00000000000000..02e11ae94e430b --- /dev/null +++ b/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst @@ -0,0 +1 @@ +Added fallback to extension modules with '.sl' suffix on HP-UX \ No newline at end of file From 1d68d6c7ac569f2b26991b12989c8a9840dec069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florin=20Sp=C4=83tar?= Date: Wed, 8 Sep 2021 11:27:17 +0300 Subject: [PATCH 3/4] Delete 2021-09-03-10-47-22.bpo-44959.OSwwPf.rst The NEWS entry should be in the "Core" category --- Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst diff --git a/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst b/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst deleted file mode 100644 index 02e11ae94e430b..00000000000000 --- a/Misc/NEWS.d/next/C API/2021-09-03-10-47-22.bpo-44959.OSwwPf.rst +++ /dev/null @@ -1 +0,0 @@ -Added fallback to extension modules with '.sl' suffix on HP-UX \ No newline at end of file From 8f2cea56f34af98948e80b3ae63830da854846a6 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Wed, 8 Sep 2021 08:29:41 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Core and Builtins/2021-09-08-08-29-41.bpo-44959.OSwwPf.rst | 1 + 1 file changed, 1 insertion(+) 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 00000000000000..02e11ae94e430b --- /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