From bd9508a7df8d31072c4503c530fb7fc0d01d4fae Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 7 Jun 2009 22:33:11 +0000 Subject: [PATCH] inherit from object --- Parser/asdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/asdl.py b/Parser/asdl.py index 7620d58462a..4b5676cd2b7 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):