MCPcopy Index your code
hub / github.com/python/cpython / _validate

Method _validate

Lib/csv.py:109–114  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

107 self._validate()
108
109 def _validate(self):
110 try:
111 _Dialect(self)
112 except TypeError as e:
113 # Re-raise to get a traceback showing more user code.
114 raise Error(str(e)) from None
115
116class excel(Dialect):
117 """Describe the usual properties of Excel-generated CSV files."""

Callers 1

__init__Method · 0.95

Calls 2

strFunction · 0.85
ErrorClass · 0.70

Tested by

no test coverage detected