mirror of https://github.com/python/cpython.git
Reduce buffer size since we do not need 1k
This commit is contained in:
parent
183c5346fe
commit
8250fbeac6
|
@ -2492,7 +2492,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
|||
else {
|
||||
/* This check is expensive! */
|
||||
if (PyErr_Occurred()) {
|
||||
char buf[1024];
|
||||
char buf[128];
|
||||
sprintf(buf, "Stack unwind with exception "
|
||||
"set and why=%d", why);
|
||||
Py_FatalError(buf);
|
||||
|
|
Loading…
Reference in New Issue