Lines Matching defs:quotechar
27 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
35 quotechar = None
57 quotechar = '"'
72 quotechar = '"'
167 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
180 quotechar, doublequote, delimiter, skipinitialspace = \
197 # _csv.reader won't accept a quotechar of ''
198 dialect.quotechar = quotechar or '"'
207 (the probable quotechar) which are preceded and followed
212 If there is no quotechar the delimiter can't be determined
227 # (quotechar, doublequote, delimiter, skipinitialspace)
252 quotechar = max(quotes, key=quotes.get)
268 {'delim':re.escape(delim), 'quote':quotechar}, re.MULTILINE)
277 return (quotechar, doublequote, delim, skipinitialspace)