mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Issue #24268: Fix import naming when loading extension modules. Patch by Petr Viktorin.
This commit is contained in:
parent
c7792160dd
commit
adc2fb8a6a
3 changed files with 4 additions and 4 deletions
|
@ -8,9 +8,9 @@
|
|||
#include "importdl.h"
|
||||
|
||||
#if defined(__hp9000s300)
|
||||
#define FUNCNAME_PATTERN "_%20s_%.200s"
|
||||
#define FUNCNAME_PATTERN "_%.20s_%.200s"
|
||||
#else
|
||||
#define FUNCNAME_PATTERN "%20s_%.200s"
|
||||
#define FUNCNAME_PATTERN "%.20s_%.200s"
|
||||
#endif
|
||||
|
||||
const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, NULL};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue