summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-07 22:33:11 +0000
committerBenjamin Peterson <benjamin@python.org>2009-06-07 22:33:11 +0000
commit6ce98e150477dd46a6b27157e783b842b324bba6 (patch)
tree15664f5e72318f7ebdd5bbd195555c549878f47f /Parser
parentc4100b199d9ac752feb931075efe1099efcc3a07 (diff)
downloadcpython-6ce98e150477dd46a6b27157e783b842b324bba6.tar.gz
inherit from object
Diffstat (limited to 'Parser')
-rw-r--r--Parser/asdl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py
index 7620d58462..4b5676cd2b 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):