diff options
Diffstat (limited to 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index 9127d61..734b35f 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -106,10 +106,6 @@ _PyImport_LoadDynamicModule(PyObject *name, PyObject *path, FILE *fp) if (_PyImport_FixupExtensionObject(m, name, path) < 0) goto error; - if (Py_VerboseFlag) - PySys_FormatStderr( - "import %U # dynamically loaded from %R\n", - name, path); Py_DECREF(nameascii); return m; |