From: Carlo Bramini Date: Wed, 13 May 2026 21:50:24 +0000 (+0200) Subject: gh-148758: Fix dynamic loading file extensions for Cygwin (#148759) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=50476a7e87926cf6a9ea978943c4a3d5d771c95f;p=thirdparty%2FPython%2Fcpython.git gh-148758: Fix dynamic loading file extensions for Cygwin (#148759) Co-authored-by: Victor Stinner --- diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index 2e1455fbe232..0ff88ad330fd 100644 --- a/Python/dynload_shlib.c +++ b/Python/dynload_shlib.c @@ -38,6 +38,7 @@ const char *_PyImport_DynLoadFiletab[] = { #ifdef __CYGWIN__ + "." SOABI ".dll", ".dll", #else /* !__CYGWIN__ */ "." SOABI ".so",