diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-07 22:33:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-07 22:33:11 (GMT) |
commit | bd9508a7df8d31072c4503c530fb7fc0d01d4fae (patch) | |
tree | 46f7a672a7578d25c02a6ae6237daac34ae2eb3f /Parser | |
parent | 1e444470142331fdb595b3e4dc3913dfd5556973 (diff) | |
download | cpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.zip cpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.tar.gz cpython-bd9508a7df8d31072c4503c530fb7fc0d01d4fae.tar.bz2 |
inherit from object
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/asdl.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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): |