summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 17:23:20 +0000
committerJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 17:23:20 +0000
commitc3447f51c37ae9674afe34e4eb6142734dcb8698 (patch)
tree122e5128de9e91d2cd20283fa6629206e41774e3 /Python
parented3ddfe981ae23e7c8fddd1e613b1a47c9cb7022 (diff)
downloadcpython-c3447f51c37ae9674afe34e4eb6142734dcb8698.tar.gz
Backport issue 4597 to python 2.5.3: Fixed several opcodes that weren't always
propagating exceptions.
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index d74149c4a9..5f8b860ab5 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1025,6 +1025,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
}
Py_FatalError("invalid argument to DUP_TOPX"
" (bytecode corruption?)");
+ /* Never returns, so don't bother to set why. */
break;
case UNARY_POSITIVE:
@@ -1618,9 +1619,11 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
case PRINT_NEWLINE:
if (stream == NULL || stream == Py_None) {
w = PySys_GetObject("stdout");
- if (w == NULL)
+ if (w == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"lost sys.stdout");
+ why = WHY_EXCEPTION;
+ }
}
if (w != NULL) {
Py_INCREF(w);
@@ -1837,6 +1840,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
PyErr_Format(PyExc_SystemError,
"no locals when loading %s",
PyObject_REPR(w));
+ why = WHY_EXCEPTION;
break;
}
if (PyDict_CheckExact(v)) {
@@ -2381,7 +2385,10 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Py_DECREF(v);
if (x != NULL) {
v = POP();
- err = PyFunction_SetClosure(x, v);
+ if (PyFunction_SetClosure(x, v) != 0) {
+ /* Can't happen unless bytecode is corrupt. */
+ why = WHY_EXCEPTION;
+ }
Py_DECREF(v);
}
if (x != NULL && oparg > 0) {
@@ -2395,7 +2402,11 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
w = POP();
PyTuple_SET_ITEM(v, oparg, w);
}
- err = PyFunction_SetDefaults(x, v);
+ if (PyFunction_SetDefaults(x, v) != 0) {
+ /* Can't happen unless
+ PyFunction_SetDefaults changes. */
+ why = WHY_EXCEPTION;
+ }
Py_DECREF(v);
}
PUSH(x);