File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,10 @@ quoting : int or ``csv.QUOTE_*`` instance, default ``None``
273
273
``QUOTE_MINIMAL `` (0), ``QUOTE_ALL `` (1), ``QUOTE_NONNUMERIC `` (2) or
274
274
``QUOTE_NONE `` (3). Default (``None ``) results in ``QUOTE_MINIMAL ``
275
275
behavior.
276
+ doublequote : boolean, default ``True ``
277
+ When ``quotechar `` is specified and ``quoting `` is not ``QUOTE_NONE ``,
278
+ indicate whether or not to interpret two consecutive ``quotechar `` elements
279
+ **inside ** a field as a single ``quotechar `` element.
276
280
escapechar : str (length 1), default ``None ``
277
281
One-character string used to escape delimiter when quoting is ``QUOTE_NONE ``.
278
282
comment : str, default ``None ``
Original file line number Diff line number Diff line change 192
192
Control field quoting behavior per ``csv.QUOTE_*`` constants. Use one of
193
193
QUOTE_MINIMAL (0), QUOTE_ALL (1), QUOTE_NONNUMERIC (2) or QUOTE_NONE (3).
194
194
Default (None) results in QUOTE_MINIMAL behavior.
195
+ doublequote : boolean, default ``True``
196
+ When quotechar is specified and quoting is not ``QUOTE_NONE``, indicate
197
+ whether or not to interpret two consecutive quotechar elements INSIDE a
198
+ field as a single ``quotechar`` element.
195
199
escapechar : str (length 1), default None
196
200
One-character string used to escape delimiter when quoting is QUOTE_NONE.
197
201
comment : str, default None
You can’t perform that action at this time.
0 commit comments