mirror of https://github.com/python/cpython
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:
parent
11300cc71e
commit
227cf764b2
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue