* Fix missing return after error message is set.

* Add a test case that would have caught it.
This commit is contained in:
Raymond Hettinger 2004-07-06 13:44:41 +00:00
parent 2f55eb4cca
commit 513ffe8112
2 changed files with 3 additions and 1 deletions

View File

@ -281,6 +281,7 @@ class BuiltinTest(unittest.TestCase):
self.assertEqual(eval('dir()', g, m), list('xyz'))
self.assertEqual(eval('globals()', g, m), g)
self.assertEqual(eval('locals()', g, m), m)
self.assertRaises(TypeError, eval, 'a', m)
# Verify that dict subclasses work as well
class D(dict):

View File

@ -459,12 +459,13 @@ builtin_eval(PyObject *self, PyObject *args)
return NULL;
if (locals != Py_None && !PyMapping_Check(locals)) {
PyErr_SetString(PyExc_TypeError, "locals must be a mapping");
return NULL;
return NULL;
}
if (globals != Py_None && !PyDict_Check(globals)) {
PyErr_SetString(PyExc_TypeError, PyMapping_Check(globals) ?
"globals must be a real dict; try eval(expr, {}, mapping)"
: "globals must be a dict");
return NULL;
}
if (globals == Py_None) {
globals = PyEval_GetGlobals();