diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-09-02 18:24:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-09-02 18:24:44 (GMT) |
commit | c7f447c89fdef7106089f16ea46d5f9341fa0858 (patch) | |
tree | 42cf788e63fdfae5f3442dde269b963473c5d611 /Lib/test/test_ast.py | |
parent | a3b84fb2f9d555e9efac556ea24f4ad75a54b4c8 (diff) | |
parent | 2e2c903700991aa9f7e96d7a7fdaed3628dc7e1e (diff) | |
download | cpython-c7f447c89fdef7106089f16ea46d5f9341fa0858.zip cpython-c7f447c89fdef7106089f16ea46d5f9341fa0858.tar.gz cpython-c7f447c89fdef7106089f16ea46d5f9341fa0858.tar.bz2 |
merge 3.2 (#15846)
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index aa08166..413613f 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -407,6 +407,12 @@ class ASTHelpers_Test(unittest.TestCase): b = compile('foo(1 + 1)', '<unknown>', 'exec', ast.PyCF_ONLY_AST) self.assertEqual(ast.dump(a), ast.dump(b)) + def test_parse_in_error(self): + try: + 1/0 + except Exception: + self.assertRaises(SyntaxError, ast.parse, r"'\U'") + def test_dump(self): node = ast.parse('spam(eggs, "and cheese")') self.assertEqual(ast.dump(node), |