コード例 #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
ファイル: csv.py プロジェクト: webiumsk/WOT-0.9.12-CT
 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))