Home | History | Annotate | Download | only in python2.7

Lines Matching refs:delimiter

30     delimiter, quotechar, escapechar, doublequote, skipinitialspace,
37 delimiter = None
59 delimiter = ','
69 delimiter = '\t'
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
168 # in case there is more than one possible delimiter
177 quotechar, doublequote, delimiter, skipinitialspace = \
179 if not delimiter:
180 delimiter, skipinitialspace = self._guess_delimiter(sample,
183 if not delimiter:
184 raise Error, "Could not determine delimiter"
193 dialect.delimiter = delimiter
205 by the same character (the probable delimiter).
208 The quote with the most wins, same with the delimiter.
209 If there is no quotechar the delimiter can't be determined
224 # (quotechar, doublequote, delimiter, skipinitialspace)
258 # there is *no* delimiter, it's a single column of quoted data
279 The delimiter /should/ occur the same number of times on
290 5) the character that best meets its goal is the delimiter