Commit d279e286 authored by Benjamin Peterson's avatar Benjamin Peterson

every other ast object has a dict, so I think AST should, too

parent 1f9a8354
...@@ -195,9 +195,6 @@ class AST_Tests(unittest.TestCase): ...@@ -195,9 +195,6 @@ class AST_Tests(unittest.TestCase):
with self.assertRaises(AttributeError): with self.assertRaises(AttributeError):
x.vararg x.vararg
with self.assertRaises(AttributeError):
x.foobar = 21
with self.assertRaises(AttributeError): with self.assertRaises(AttributeError):
ast.AST(lineno=2) ast.AST(lineno=2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment