Skip to content

Commit d64c9c6

Browse files
committed
DOC: updated io.rst with quoting options in docstring
1 parent 4177d85 commit d64c9c6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

doc/source/io.rst

+8
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ They can take a number of arguments:
122122
will try to look for it in the output and parse relevant data to integers.
123123
Because it has to essentially scan through the data again, this causes a
124124
significant performance hit so only use if necessary.
125+
- ``lineterminator`` : string (length 1), default ``None``, Character to break file into lines. Only valid with C parser
126+
- ``quotechar`` : string, The character to used to denote the start and end of a quoted item.
127+
Quoted items can include the delimiter and it will be ignored.
128+
- ``quoting`` : int,
129+
Controls whether quotes should be recognized. Values are taken from `csv.QUOTE_*` values.
130+
Acceptable values are 0, 1, 2, and 3 for QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONE, and QUOTE_NONNUMERIC, respectively.
131+
- ``skipinitialspace`` : boolean, default ``False``, Skip spaces after delimiter
132+
- ``escapechar`` : string, to specify how to escape quoted data
125133
- ``comment``: denotes the start of a comment and ignores the rest of the line.
126134
Currently line commenting is not supported.
127135
- ``nrows``: Number of rows to read out of the file. Useful to only read a

0 commit comments

Comments
 (0)