From: Guido van Rossum Date: Wed, 5 Aug 1998 13:53:32 +0000 (+0000) Subject: Undo a silly effect of a global substitution: the macintosh panic() X-Git-Tag: v1.5.2a1~145 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=227cf764b241e04fa98a59b552b47e0a8fa4d419;p=thirdparty%2FPython%2Fcpython.git 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 e1b2b188964d..8a09dd6d680e 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);