mirror of
https://github.com/python/cpython.git
synced 2025-07-27 13:14:41 +00:00
Reduce buffer size since we do not need 1k
This commit is contained in:
parent
183c5346fe
commit
8250fbeac6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue