diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-10-12 20:53:15 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-10-12 20:53:15 (GMT) |
commit | deff89c8be78ed962d989bd88c5b3ee292263596 (patch) | |
tree | c394e51426f071b8dcfc11418cb6280e425b3d80 /Mac/Modules/ctl | |
parent | 3179b36014d1dd48cc3f1363edf4b1adecc12c79 (diff) | |
download | cpython-deff89c8be78ed962d989bd88c5b3ee292263596.zip cpython-deff89c8be78ed962d989bd88c5b3ee292263596.tar.gz cpython-deff89c8be78ed962d989bd88c5b3ee292263596.tar.bz2 |
Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate.
Diffstat (limited to 'Mac/Modules/ctl')
-rw-r--r-- | Mac/Modules/ctl/Ctlmodule.c | 2 | ||||
-rw-r--r-- | Mac/Modules/ctl/ctlsupport.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/ctl/Ctlmodule.c b/Mac/Modules/ctl/Ctlmodule.c index 6b43b68..6a74d23 100644 --- a/Mac/Modules/ctl/Ctlmodule.c +++ b/Mac/Modules/ctl/Ctlmodule.c @@ -1419,7 +1419,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"); } diff --git a/Mac/Modules/ctl/ctlsupport.py b/Mac/Modules/ctl/ctlsupport.py index e01e871..84dd6ce 100644 --- a/Mac/Modules/ctl/ctlsupport.py +++ b/Mac/Modules/ctl/ctlsupport.py @@ -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"); } """ |