File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 103
103
sep : str, default {_default_sep}
104
104
Delimiter to use. If sep is None, the C engine cannot automatically detect
105
105
the separator, but the Python parsing engine can, meaning the latter will
106
- be used and automatically detect the separator by Python's builtin sniffer
107
- tool, ``csv.Sniffer``. In addition, separators longer than 1 character and
108
- different from ``'\s+'`` will be interpreted as regular expressions and
109
- will also force the use of the Python parsing engine. Note that regex
110
- delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'``.
106
+ be used and automatically detect the separator from only the first valid
107
+ row of the file by Python's builtin sniffer tool, ``csv.Sniffer``.
108
+ In addition, separators longer than 1 character and different from
109
+ ``'\s+'`` will be interpreted as regular expressions and will also force
110
+ the use of the Python parsing engine. Note that regex delimiters are prone
111
+ to ignoring quoted data. Regex example: ``'\r\t'``.
111
112
delimiter : str, default ``None``
112
113
Alias for sep.
113
114
header : int, list of int, None, default 'infer'
You can’t perform that action at this time.
0 commit comments