From 2f3667a7b92b4ef5d3d3db986b0723cf27706930 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 12 Oct 1998 18:23:55 +0000 Subject: Replace fprintf(stderr, ...) with PySys_WriteStderr(...). --- Python/importdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/importdl.c') 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); -- cgit v1.2.1