From ab826d11a310fd4d7c99f6cf449660b690846a3b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 7 Jul 2014 23:06:15 +0200 Subject: Issue #21925: PyImport_Cleanup(): Remove unused parameter in PySys_FormatStderr() call --- Python/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v0.12