mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Replace fprintf(stderr, ...) with PySys_WriteStderr(...).
This commit is contained in:
parent
8442af35fe
commit
2f3667a7b9
3 changed files with 25 additions and 25 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue