mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue