diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-28 01:07:08 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-28 01:07:08 +0000 |
commit | 30a919d162fc7f5072de7fecde86da3d9b43d3e8 (patch) | |
tree | 32f34d92e32755208fab34fcc543a8996b0039d3 /Python/importdl.c | |
parent | f04b85e6c166e9f31aa167d63e92c49595c858d6 (diff) | |
parent | 1f1268c0bc93629b7abc16d8af9cf997c32a947b (diff) | |
download | cpython-30a919d162fc7f5072de7fecde86da3d9b43d3e8.tar.gz |
Issue #20699: Merge io bytes-like fixes 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 |