Home | History | Annotate | Download | only in Lib

Lines Matching refs:quotechar

28     delimiter, quotechar, escapechar, doublequote, skipinitialspace,
36 quotechar = None
58 quotechar = '"'
73 quotechar = '"'
168 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
181 quotechar, doublequote, delimiter, skipinitialspace = \
198 # _csv.reader won't accept a quotechar of ''
199 dialect.quotechar = quotechar or '"'
208 (the probable quotechar) which are preceded and followed
213 If there is no quotechar the delimiter can't be determined
228 # (quotechar, doublequote, delimiter, skipinitialspace)
253 quotechar = max(quotes, key=quotes.get)
269 {'delim':re.escape(delim), 'quote':quotechar}, re.MULTILINE)
278 return (quotechar, doublequote, delim, skipinitialspace)