Path 1: 25 calls (0.71)

Error (25)

1def _validate(self):
2        try:
3            _Dialect(self)
4        except TypeError as e:
5            # We do this for compatibility with py2.3
6            raise Error(str(e))
            

Path 2: 10 calls (0.29)

1def _validate(self):
2        try:
3            _Dialect(self)
4        except TypeError as e:
5            # We do this for compatibility with py2.3
6            raise Error(str(e))