diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-05-23 21:13:41 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-05-23 21:13:41 (GMT) |
commit | adc2fb8a6a8d98f32eea2d1022f14cadfdf915e3 (patch) | |
tree | 50c0518a48deac1bde97566f4420064b951e1c94 /Python/dynload_dl.c | |
parent | c7792160ddf8eea5f2a14cf0d957ac9a89615adb (diff) | |
download | cpython-adc2fb8a6a8d98f32eea2d1022f14cadfdf915e3.zip cpython-adc2fb8a6a8d98f32eea2d1022f14cadfdf915e3.tar.gz cpython-adc2fb8a6a8d98f32eea2d1022f14cadfdf915e3.tar.bz2 |
Issue #24268: Fix import naming when loading extension modules. Patch by Petr Viktorin.
Diffstat (limited to 'Python/dynload_dl.c')
-rw-r--r-- | Python/dynload_dl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_dl.c b/Python/dynload_dl.c index d235a84..2bec645 100644 --- a/Python/dynload_dl.c +++ b/Python/dynload_dl.c @@ -18,6 +18,6 @@ dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix, { char funcname[258]; - PyOS_snprintf(funcname, sizeof(funcname), "%20s_%.200s", prefix, shortname); + PyOS_snprintf(funcname, sizeof(funcname), "%.20s_%.200s", prefix, shortname); return dl_loadmod(Py_GetProgramName(), pathname, funcname); } |