summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-12 16:27:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-12 16:27:36 (GMT)
commitd279e286f2e7035836d779bfad5e93d22eb42cf0 (patch)
treebcbf2e255ccb8c5f04e93e8cb92274d785c32423 /Lib
parent1f9a8354002dbb29f38bfbd4273ce62e40ac80ba (diff)
downloadcpython-d279e286f2e7035836d779bfad5e93d22eb42cf0.zip
cpython-d279e286f2e7035836d779bfad5e93d22eb42cf0.tar.gz
cpython-d279e286f2e7035836d779bfad5e93d22eb42cf0.tar.bz2
every other ast object has a dict, so I think AST should, too
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ast.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py
index be9f05e..10be487 100644
--- a/Lib/test/test_ast.py
+++ b/Lib/test/test_ast.py
@@ -196,9 +196,6 @@ class AST_Tests(unittest.TestCase):
x.vararg
with self.assertRaises(AttributeError):
- x.foobar = 21
-
- with self.assertRaises(AttributeError):
ast.AST(lineno=2)
with self.assertRaises(TypeError):