Undo a silly effect of a global substitution: the macintosh panic()

function had a reference to vPySys_WriteStderr(...) -- turn it back
into fprintf(stder, ...).
This commit is contained in:
Guido van Rossum 1998-08-05 13:53:32 +00:00
parent 11300cc71e
commit 227cf764b2
1 changed files with 1 additions and 1 deletions

View 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);