commit | bd9508a7df8d31072c4503c530fb7fc0d01d4fae | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Jun 07 22:33:11 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Jun 07 22:33:11 2009 +0000 |
tree | 46f7a672a7578d25c02a6ae6237daac34ae2eb3f | |
parent | 1e444470142331fdb595b3e4dc3913dfd5556973 [diff] [blame] |
inherit from object
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 @@ # 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):