diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-09 23:51:54 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-09 23:51:54 +0200 |
commit | 16fad0ce0d06f5e11b46f37eadbb060256b90540 (patch) | |
tree | 33dd5bc188824aa8ae498a3351dd330ee2c85bb8 /Python/importdl.c | |
parent | c823f3ffde59b90df6ef240ece057d4da20e580e (diff) | |
parent | 27c856cc1a76a2448283d4a98fa74a268a097c59 (diff) | |
download | cpython-16fad0ce0d06f5e11b46f37eadbb060256b90540.tar.gz |
Issue #28649: Clear the typing module caches when search for reference leaks.
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 |