diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-07 21:06:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-07 21:06:15 (GMT) |
commit | ab826d11a310fd4d7c99f6cf449660b690846a3b (patch) | |
tree | 16265c35c1fb2e4442d0415da3b37ecd48cbed3d /Python | |
parent | cd75298611cbb79336e2a46ade2b7ae586e3d860 (diff) | |
download | cpython-ab826d11a310fd4d7c99f6cf449660b690846a3b.zip cpython-ab826d11a310fd4d7c99f6cf449660b690846a3b.tar.gz cpython-ab826d11a310fd4d7c99f6cf449660b690846a3b.tar.bz2 |
Issue #21925: PyImport_Cleanup(): Remove unused parameter in
PySys_FormatStderr() call
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 80e3764..7ee7ed9 100644 --- a/Python/import.c +++ b/Python/import.c @@ -460,7 +460,7 @@ PyImport_Cleanup(void) while (PyDict_Next(modules, &pos, &key, &value)) { if (PyModule_Check(value)) { if (Py_VerboseFlag && PyUnicode_Check(key)) - PySys_FormatStderr("# cleanup[2] removing %U\n", key, value); + PySys_FormatStderr("# cleanup[2] removing %U\n", key); STORE_MODULE_WEAKREF(key, value); PyDict_SetItem(modules, key, Py_None); } |