(self)
| 45 | self._validate() |
| 46 | |
| 47 | def _validate(self): |
| 48 | try: |
| 49 | _Dialect(self) |
| 50 | except TypeError as e: |
| 51 | # We do this for compatibility with py2.3 |
| 52 | raise Error(str(e)) |
| 53 | |
| 54 | class excel(Dialect): |
| 55 | """Describe the usual properties of Excel-generated CSV files.""" |