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

Lines Matching refs:quotechar

30     delimiter, quotechar, escapechar, doublequote, skipinitialspace,
38 quotechar = None
60 quotechar = '"'
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
177 quotechar, doublequote, delimiter, skipinitialspace = \
194 # _csv.reader won't accept a quotechar of ''
195 dialect.quotechar = quotechar or '"'
204 (the probable quotechar) which are preceded and followed
209 If there is no quotechar the delimiter can't be determined
224 # (quotechar, doublequote, delimiter, skipinitialspace)
248 quotechar = reduce(lambda a, b, quotes = quotes:
265 {'delim':delim, 'quote':quotechar}, re.MULTILINE)
274 return (quotechar, doublequote, delim, skipinitialspace)