inherit from object

This commit is contained in:
Benjamin Peterson 2009-06-07 22:33:11 +00:00
parent 1e44447014
commit bd9508a7df
1 changed files with 1 additions and 1 deletions

View File

@ -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):