Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd75298 commit ab826d1Copy full SHA for ab826d1
1 file changed
Python/import.c
@@ -460,7 +460,7 @@ PyImport_Cleanup(void)
460
while (PyDict_Next(modules, &pos, &key, &value)) {
461
if (PyModule_Check(value)) {
462
if (Py_VerboseFlag && PyUnicode_Check(key))
463
- PySys_FormatStderr("# cleanup[2] removing %U\n", key, value);
+ PySys_FormatStderr("# cleanup[2] removing %U\n", key);
464
STORE_MODULE_WEAKREF(key, value);
465
PyDict_SetItem(modules, key, Py_None);
466
}
0 commit comments