Fix bootstrapping asdl -- it didn't work with Python 2.7.

This commit is contained in:
Guido van Rossum 2014-07-08 16:22:48 -07:00
parent 667f545e03
commit 416b516d46

View file

@ -112,7 +112,7 @@ def __repr__(self):
# interesting node.
# We also define a Check visitor that makes sure the parsed ASDL is well-formed.
class VisitorBase:
class VisitorBase(object):
"""Generic tree visitor for ASTs."""
def __init__(self):
self.cache = {}
@ -137,7 +137,7 @@ class Check(VisitorBase):
Errors are printed and accumulated.
"""
def __init__(self):
super().__init__()
super(Check, self).__init__()
self.cons = {}
self.errors = 0
self.types = {}