summaryrefslogtreecommitdiff
path: root/Python/importdl.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-12 18:23:55 +0000
committerGuido van Rossum <guido@python.org>1998-10-12 18:23:55 +0000
commit2f3667a7b92b4ef5d3d3db986b0723cf27706930 (patch)
tree011d198b4e056fd20282d1be5ebd0225590e4880 /Python/importdl.c
parent8442af35fe337a81efa83952574c5ca0dbcc2883 (diff)
downloadcpython-git-2f3667a7b92b4ef5d3d3db986b0723cf27706930.tar.gz
Replace fprintf(stderr, ...) with PySys_WriteStderr(...).
Diffstat (limited to 'Python/importdl.c')
-rw-r--r--Python/importdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index 8238556910..dc97f67f18 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -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);