diff options
author | Eric V. Smith <eric@trueblade.com> | 2012-03-12 22:18:30 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2012-03-12 22:18:30 (GMT) |
commit | 1d4798cb93aabdea7843c85d60b0e898107bae05 (patch) | |
tree | 8a54e47a75d6e9b3b2d17bc1bfd3f9820d698bc7 /Lib/test/test_ast.py | |
parent | edbb6ca084b4446dcf6c78c942e875a3b16a4397 (diff) | |
parent | 85769539a3b4b229c2a4303653d125f323c5df8c (diff) | |
download | cpython-1d4798cb93aabdea7843c85d60b0e898107bae05.zip cpython-1d4798cb93aabdea7843c85d60b0e898107bae05.tar.gz cpython-1d4798cb93aabdea7843c85d60b0e898107bae05.tar.bz2 |
Merge heads.
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index be9f05e..f4ce615 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -195,12 +195,6 @@ class AST_Tests(unittest.TestCase): with self.assertRaises(AttributeError): x.vararg - with self.assertRaises(AttributeError): - x.foobar = 21 - - with self.assertRaises(AttributeError): - ast.AST(lineno=2) - with self.assertRaises(TypeError): # "_ast.AST constructor takes 0 positional arguments" ast.AST(2) |