mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
Print verbose messages to stderr. Fixes #1036752.
This commit is contained in:
parent
fec1ce0b72
commit
507a485984
1 changed files with 2 additions and 1 deletions
|
@ -113,7 +113,8 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (Py_VerboseFlag)
|
if (Py_VerboseFlag)
|
||||||
printf("dlopen(\"%s\", %x);\n", pathname, dlopenflags);
|
PySys_WriteStderr("dlopen(\"%s\", %x);\n", pathname,
|
||||||
|
dlopenflags);
|
||||||
|
|
||||||
#ifdef __VMS
|
#ifdef __VMS
|
||||||
/* VMS currently don't allow a pathname, use a logical name instead */
|
/* VMS currently don't allow a pathname, use a logical name instead */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue