| commit | 227cf764b241e04fa98a59b552b47e0a8fa4d419 | [log] [tgz] |
|---|---|---|
| author | Guido van Rossum <guido@python.org> | Wed Aug 05 13:53:32 1998 +0000 |
| committer | Guido van Rossum <guido@python.org> | Wed Aug 05 13:53:32 1998 +0000 |
| tree | b17f6d2c5e514ddb099237876b5c11e9d36ca375 | |
| parent | 11300cc71e472cd18e2675d7d63e3b20b977f85a [diff] |
Undo a silly effect of a global substitution: the macintosh panic() function had a reference to vPySys_WriteStderr(...) -- turn it back into fprintf(stder, ...).
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 @@ va_start(varg, format); - vPySys_WriteStderr(format, varg); + vfprintf(stderr, format, varg); (void) fflush(stderr); va_end(varg);