File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ filepath_or_buffer : various
84
84
sep : str, defaults to ``',' `` for :func: `read_csv `, ``\t `` for :func: `read_table `
85
85
Delimiter to use. If sep is ``None ``, the C engine cannot automatically detect
86
86
the separator, but the Python parsing engine can, meaning the latter will be
87
- used automatically. In addition, separators longer than 1 character and
87
+ used and automatically detect the separator by Python's builtin sniffer tool,
88
+ :class: `python:csv.Sniffer `. In addition, separators longer than 1 character and
88
89
different from ``'\s+' `` will be interpreted as regular expressions and
89
90
will also force the use of the Python parsing engine. Note that regex
90
91
delimiters are prone to ignoring quoted data. Regex example: ``'\\r\\t' ``.
Original file line number Diff line number Diff line change 311
311
_sep_doc = r"""sep : str, default {default}
312
312
Delimiter to use. If sep is None, the C engine cannot automatically detect
313
313
the separator, but the Python parsing engine can, meaning the latter will
314
- be used automatically. In addition, separators longer than 1 character and
314
+ be used and automatically detect the separator by Python's builtin sniffer
315
+ tool, ``csv.Sniffer``. In addition, separators longer than 1 character and
315
316
different from ``'\s+'`` will be interpreted as regular expressions and
316
317
will also force the use of the Python parsing engine. Note that regex
317
318
delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'``
You can’t perform that action at this time.
0 commit comments