changeset: 91598:047da19efdab branch: 3.4 parent: 91594:34a0d98c51ea user: Victor Stinner date: Mon Jul 07 23:06:15 2014 +0200 files: Python/import.c description: Issue #21925: PyImport_Cleanup(): Remove unused parameter in PySys_FormatStderr() call diff -r 34a0d98c51ea -r 047da19efdab Python/import.c --- a/Python/import.c Mon Jul 07 21:52:29 2014 +0200 +++ b/Python/import.c Mon Jul 07 23:06:15 2014 +0200 @@ -460,7 +460,7 @@ 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); }