mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
PEP 3149: Try to load the extension with the SOABI before trying
to load the one without the SOABI in the name.
This commit is contained in:
parent
9a9dd1c140
commit
f69af1e959
1 changed files with 1 additions and 1 deletions
|
|
@ -52,8 +52,8 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
|
||||||
{"MODULE.EXE", "rb", C_EXTENSION},
|
{"MODULE.EXE", "rb", C_EXTENSION},
|
||||||
#else /* !__VMS */
|
#else /* !__VMS */
|
||||||
{"." SOABI ".so", "rb", C_EXTENSION},
|
{"." SOABI ".so", "rb", C_EXTENSION},
|
||||||
{".so", "rb", C_EXTENSION},
|
|
||||||
{"module." SOABI ".so", "rb", C_EXTENSION},
|
{"module." SOABI ".so", "rb", C_EXTENSION},
|
||||||
|
{".so", "rb", C_EXTENSION},
|
||||||
{"module.so", "rb", C_EXTENSION},
|
{"module.so", "rb", C_EXTENSION},
|
||||||
#endif /* __VMS */
|
#endif /* __VMS */
|
||||||
#endif /* defined(PYOS_OS2) && defined(PYCC_GCC) */
|
#endif /* defined(PYOS_OS2) && defined(PYCC_GCC) */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue