Replace fprintf(stderr, ...) with PySys_WriteStderr(...).

This commit is contained in:
Guido van Rossum 1998-10-12 18:23:55 +00:00
parent 8442af35fe
commit 2f3667a7b9
3 changed files with 25 additions and 25 deletions

View file

@ -809,7 +809,7 @@ _PyImport_LoadDynamicModule(name, pathname, fp)
PyErr_Clear(); /* Not important enough to report */
Py_XDECREF(s);
if (Py_VerboseFlag)
fprintf(stderr,
PySys_WriteStderr(
"import %s # dynamically loaded from %s\n",
name, pathname);
Py_INCREF(m);