Skip to content

Commit bb2c61a

Browse files
committed
Update readers.py
1 parent 2aaefd4 commit bb2c61a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/parsers/readers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ def read_csv(
845845
In addition, separators longer than 1 character and different from
846846
``'\\s+'`` will be interpreted as regular expressions and will also force
847847
the use of the Python parsing engine. Note that regex delimiters are prone
848-
to ignoring quoted data. Regex example: ``'\r '``.
848+
to ignoring quoted data. Regex example: ``'\\r\\t'``.
849849
delimiter : str, optional
850850
Alias for ``sep``.
851851
header : int, Sequence of int, 'infer' or None, default 'infer'
@@ -1433,7 +1433,7 @@ def read_table(
14331433
In addition, separators longer than 1 character and different from
14341434
``'\\s+'`` will be interpreted as regular expressions and will also force
14351435
the use of the Python parsing engine. Note that regex delimiters are prone
1436-
to ignoring quoted data. Regex example: ``'\r '``.
1436+
to ignoring quoted data. Regex example: ``'\\r\\t'``.
14371437
delimiter : str, optional
14381438
Alias for ``sep``.
14391439
header : int, Sequence of int, 'infer' or None, default 'infer'

0 commit comments

Comments
 (0)