diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-27 11:30:59 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-27 11:30:59 +0000 |
commit | 3bd347c543f3849bc5c70f7c07aa02bb204d3060 (patch) | |
tree | bc488dced2ee95b4311a8c9ee91d62ef36f14248 /Python/importdl.c | |
parent | 687b0bec83d503de3fb95e0515d0ba8519cf0d22 (diff) | |
parent | 3172ee03da2bfce19a60222fbff5aaf67680d9ea (diff) | |
download | cpython-3bd347c543f3849bc5c70f7c07aa02bb204d3060.tar.gz |
Issue #5784: Merge zlib from 3.5
Diffstat (limited to 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index 1aa585d5e8..ac03289c4d 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -23,8 +23,8 @@ extern dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix, const char *pathname, FILE *fp); #endif -static const char *ascii_only_prefix = "PyInit"; -static const char *nonascii_prefix = "PyInitU"; +static const char * const ascii_only_prefix = "PyInit"; +static const char * const nonascii_prefix = "PyInitU"; /* Get the variable part of a module's export symbol name. * Returns a bytes instance. For non-ASCII-named modules, the name is |