summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/waste/wastemodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-10-12 20:53:15 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-10-12 20:53:15 (GMT)
commitdeff89c8be78ed962d989bd88c5b3ee292263596 (patch)
treec394e51426f071b8dcfc11418cb6280e425b3d80 /Mac/Modules/waste/wastemodule.c
parent3179b36014d1dd48cc3f1363edf4b1adecc12c79 (diff)
downloadcpython-deff89c8be78ed962d989bd88c5b3ee292263596.zip
cpython-deff89c8be78ed962d989bd88c5b3ee292263596.tar.gz
cpython-deff89c8be78ed962d989bd88c5b3ee292263596.tar.bz2
Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate.
Diffstat (limited to 'Mac/Modules/waste/wastemodule.c')
-rw-r--r--Mac/Modules/waste/wastemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/waste/wastemodule.c b/Mac/Modules/waste/wastemodule.c
index 660401f..ffb39c3 100644
--- a/Mac/Modules/waste/wastemodule.c
+++ b/Mac/Modules/waste/wastemodule.c
@@ -150,7 +150,7 @@ any_handler(WESelector what, WEObjectReference who, PyObject *args, PyObject **r
Py_DECREF(func);
Py_DECREF(key);
if ( *rv == NULL ) {
- fprintf(stderr, "--Exception in callback: ");
+ PySys_WriteStderr("--Exception in callback: ");
PyErr_Print();
return errAEReplyNotArrived;
}