Skip to content

Commit 2396fa6

Browse files
authored
bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-27857)
1 parent c11956a commit 2396fa6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added fallback to extension modules with '.sl' suffix on HP-UX

Python/dynload_hpux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define FUNCNAME_PATTERN "%.20s_%.200s"
1414
#endif
1515

16-
const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, NULL};
16+
const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, ".sl", NULL};
1717

1818
dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,
1919
const char *shortname,

0 commit comments

Comments
 (0)