use error label instead of breaking eval loop (closes #16693)

This commit is contained in:
Benjamin Peterson 2012-12-15 12:51:05 -05:00
parent 1a714750cf
commit 9272279afd
2 changed files with 7 additions and 3 deletions

View file

@ -462,6 +462,11 @@ class BuiltinTest(unittest.TestCase):
self.assertRaises(TypeError, eval, ())
self.assertRaises(SyntaxError, eval, bom[:2] + b'a')
class X:
def __getitem__(self, key):
raise ValueError
self.assertRaises(ValueError, eval, "foo", {}, X())
def test_general_eval(self):
# Tests that general mappings can be used for the locals argument