diff options
author | Guido van Rossum <guido@python.org> | 1998-08-05 13:53:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-05 13:53:32 (GMT) |
commit | 227cf764b241e04fa98a59b552b47e0a8fa4d419 (patch) | |
tree | b17f6d2c5e514ddb099237876b5c11e9d36ca375 /Modules/_tkinter.c | |
parent | 11300cc71e472cd18e2675d7d63e3b20b977f85a (diff) | |
download | cpython-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.c | 2 |
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); |