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