@@ -100,10 +100,10 @@ They can take a number of arguments:
100
100
Currently line commenting is not supported.
101
101
- ``nrows ``: Number of rows to read out of the file. Useful to only read a
102
102
small portion of a large file
103
- - ``iterator ``: If True, return a ``TextParser `` to enable reading a file
103
+ - ``iterator ``: If True, return a ``TextFileReader `` to enable reading a file
104
104
into memory piece by piece
105
105
- ``chunksize ``: An number of rows to be used to "chunk" a file into
106
- pieces. Will cause an ``TextParser `` object to be returned. More on this
106
+ pieces. Will cause an ``TextFileReader `` object to be returned. More on this
107
107
below in the section on :ref: `iterating and chunking <io.chunking >`
108
108
- ``skip_footer ``: number of lines to skip at bottom of file (default 0)
109
109
- ``converters ``: a dictionary of functions for converting values in certain
@@ -837,7 +837,7 @@ rather than reading the entire file into memory, such as the following:
837
837
838
838
839
839
By specifiying a ``chunksize `` to ``read_csv `` or ``read_table ``, the return
840
- value will be an iterable object of type ``TextParser ``:
840
+ value will be an iterable object of type ``TextFileReader ``:
841
841
842
842
.. ipython :: python
843
843
@@ -848,7 +848,7 @@ value will be an iterable object of type ``TextParser``:
848
848
print chunk
849
849
850
850
851
- Specifying ``iterator=True `` will also return the ``TextParser `` object:
851
+ Specifying ``iterator=True `` will also return the ``TextFileReader `` object:
852
852
853
853
.. ipython :: python
854
854
0 commit comments