summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-08-05 13:53:32 (GMT)
committerGuido van Rossum <guido@python.org>1998-08-05 13:53:32 (GMT)
commit227cf764b241e04fa98a59b552b47e0a8fa4d419 (patch)
treeb17f6d2c5e514ddb099237876b5c11e9d36ca375 /Modules/_tkinter.c
parent11300cc71e472cd18e2675d7d63e3b20b977f85a (diff)
downloadcpython-227cf764b241e04fa98a59b552b47e0a8fa4d419.zip
cpython-227cf764b241e04fa98a59b552b47e0a8fa4d419.tar.gz
cpython-227cf764b241e04fa98a59b552b47e0a8fa4d419.tar.bz2
Undo a silly effect of a global substitution: the macintosh panic()
function had a reference to vPySys_WriteStderr(...) -- turn it back into fprintf(stder, ...).
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index e1b2b18..8a09dd6 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -2071,7 +2071,7 @@ panic(char * format, ...)
va_start(varg, format);
- vPySys_WriteStderr(format, varg);
+ vfprintf(stderr, format, varg);
(void) fflush(stderr);
va_end(varg);