Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Added missing escape for a backslash #2674

Merged
1 commit merged into from Jan 10, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/source/io.rst
@@ -1,4 +1,3 @@

.. _io:

.. currentmodule:: pandas
Expand Down Expand Up @@ -43,7 +42,7 @@ data into a DataFrame object. They can take a number of arguments:
- ``sep`` or ``delimiter``: A delimiter / separator to split fields
on. `read_csv` is capable of inferring the delimiter automatically in some
cases by "sniffing." The separator may be specified as a regular
expression; for instance you may use '\|\s*' to indicate a pipe plus
expression; for instance you may use '\|\\s*' to indicate a pipe plus
arbitrary whitespace.
- ``delim_whitespace``: Parse whitespace-delimited (spaces or tabs) file
(much faster than using a regular expression)
Expand Down