Lines Matching refs:delimiter
27 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
34 delimiter = None
56 delimiter = ','
66 delimiter = '\t'
71 delimiter = ','
167 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
171 # in case there is more than one possible delimiter
180 quotechar, doublequote, delimiter, skipinitialspace = \
182 if not delimiter:
183 delimiter, skipinitialspace = self._guess_delimiter(sample,
186 if not delimiter:
187 raise Error("Could not determine delimiter")
196 dialect.delimiter = delimiter
208 by the same character (the probable delimiter).
211 The quote with the most wins, same with the delimiter.
212 If there is no quotechar the delimiter can't be determined
227 # (quotechar, doublequote, delimiter, skipinitialspace)
260 # there is *no* delimiter, it's a single column of quoted data
282 The delimiter /should/ occur the same number of times on
293 5) the character that best meets its goal is the delimiter