summaryrefslogtreecommitdiffstats
path: root/Parser/asdl.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-07 22:33:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-06-07 22:33:11 (GMT)
commitbd9508a7df8d31072c4503c530fb7fc0d01d4fae (patch)
tree46f7a672a7578d25c02a6ae6237daac34ae2eb3f /Parser/asdl.py
parent1e444470142331fdb595b3e4dc3913dfd5556973 (diff)
downloadcpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.zip
cpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.tar.gz
cpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.tar.bz2
inherit from object
Diffstat (limited to 'Parser/asdl.py')
-rw-r--r--Parser/asdl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py
index 7620d58..4b5676c 100644
--- a/Parser/asdl.py
+++ b/Parser/asdl.py
@@ -226,7 +226,7 @@ builtin_types = ("identifier", "string", "int", "bool", "object")
# not sure if any of the methods are useful yet, but I'm adding them
# piecemeal as they seem helpful
-class AST:
+class AST(object):
pass # a marker class
class Module(AST):