Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate.

This commit is contained in:
Jack Jansen 1998-10-12 20:53:15 +00:00
parent 3179b36014
commit deff89c8be
17 changed files with 21 additions and 22 deletions

View file

@ -137,7 +137,7 @@ mytracker(ctl, part)
if (rv)
Py_DECREF(rv);
else
fprintf(stderr, "TrackControl: exception in tracker function\\n");
PySys_WriteStderr("TrackControl: exception in tracker function\\n");
}
"""