Issue 1036752: printf() in dynload_shlib.c should be PySys_WriteStderr (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/40963

classification

Title: printf() in dynload_shlib.c should be PySys_WriteStderr
Type: Stage:
Components: Interpreter Core Versions: Python 2.4

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: loewis Nosy List: exarkun, loewis, rhettinger
Priority: normal Keywords:

Created on 2004-09-29 03:21 by exarkun, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg22567 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2004-09-29 03:21
Line 116 of dist/src/Python/dynload_shlib.c contains a printf() guarded by a Py_VerboseFlag. This should be a PySys_WriteStderr instead.
msg22568 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2004-09-30 00:48
Logged In: YES user_id=80475 Martin, I believe this is your code.
msg22569 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-10-03 08:52
Logged In: YES user_id=21627 Thanks for your report. This is now fixed in dynload_shlib.c 2.17
History
Date User Action Args
2022-04-11 14:56:07 admin set github: 40963
2004-09-29 03:21:16 exarkun create