summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-01-27 17:12:15 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2008-01-27 17:12:15 (GMT)
commit8250fbeac6c7c07e6fe03f7b51fe946e44729548 (patch)
tree18a919d86bed2026bdf048722a001755a10cde2b /Python/ceval.c
parent183c5346fef1d61badd9ce0b1c08a014d2bff874 (diff)
downloadcpython-8250fbeac6c7c07e6fe03f7b51fe946e44729548.zip
cpython-8250fbeac6c7c07e6fe03f7b51fe946e44729548.tar.gz
cpython-8250fbeac6c7c07e6fe03f7b51fe946e44729548.tar.bz2
Reduce buffer size since we do not need 1k
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 3e0ff76..db9ce7d 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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);