Skip to content

Commit b900611

Browse files
committed
allow .abi3t.so extensions
1 parent 3d0824a commit b900611

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/dynload_shlib.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ const char *_PyImport_DynLoadFiletab[] = {
4444
#ifdef ALT_SOABI
4545
"." ALT_SOABI ".so",
4646
#endif
47+
#ifndef Py_GIL_DISABLED
4748
".abi" PYTHON_ABI_STRING ".so",
49+
#endif /* Py_GIL_DISABLED */
50+
".abi" PYTHON_ABI_STRING "t.so",
4851
".so",
4952
#endif /* __CYGWIN__ */
5053
NULL,

0 commit comments

Comments
 (0)