Home | History | Annotate | Download | only in Lib

Lines Matching refs:quotechar

30     delimiter, quotechar, escapechar, doublequote, skipinitialspace,
38 quotechar = None
60 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)
252 quotechar = reduce(lambda a, b, quotes = quotes:
270 {'delim':re.escape(delim), 'quote':quotechar}, re.MULTILINE)
279 return (quotechar, doublequote, delim, skipinitialspace)