]> granicus.if.org Git - python/commitdiff
Undo a silly effect of a global substitution: the macintosh panic()
authorGuido van Rossum <guido@python.org>
Wed, 5 Aug 1998 13:53:32 +0000 (13:53 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 5 Aug 1998 13:53:32 +0000 (13:53 +0000)
function had a reference to vPySys_WriteStderr(...) -- turn it back
into fprintf(stder, ...).

Modules/_tkinter.c

index e1b2b188964d6ffff8565c7d8a63a39c59fc38f0..8a09dd6d680e47218f4bbaab416d752a710efe84 100644 (file)
@@ -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);