From: Benjamin Peterson Date: Sun, 7 Jun 2009 22:33:11 +0000 (+0000) Subject: inherit from object X-Git-Tag: v2.7a1~1012 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd9508a7df8d31072c4503c530fb7fc0d01d4fae;p=thirdparty%2FPython%2Fcpython.git inherit from object --- diff --git a/Parser/asdl.py b/Parser/asdl.py index 7620d58462ab..4b5676cd2b78 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):