@@ -137,8 +137,10 @@ usecols : array-like or callable, default ``None``
137137
138138 Using this parameter results in much faster parsing time and lower memory usage.
139139as_recarray : boolean, default ``False ``
140- DEPRECATED: this argument will be removed in a future version. Please call
141- ``pd.read_csv(...).to_records() `` instead.
140+
141+ .. deprecated :: 0.18.2
142+
143+ Please call ``pd.read_csv(...).to_records() `` instead.
142144
143145 Return a NumPy recarray instead of a DataFrame after parsing the data. If
144146 set to ``True ``, this option takes precedence over the ``squeeze `` parameter.
@@ -191,7 +193,11 @@ skiprows : list-like or integer, default ``None``
191193 skipfooter : int, default ``0 ``
192194 Number of lines at bottom of file to skip (unsupported with engine='c').
193195skip_footer : int, default ``0 ``
194- DEPRECATED: use the ``skipfooter `` parameter instead, as they are identical
196+
197+ .. deprecated :: 0.19.0
198+
199+ Use the ``skipfooter `` parameter instead, as they are identical
200+
195201nrows : int, default ``None ``
196202 Number of rows of file to read. Useful for reading pieces of large files.
197203low_memory : boolean, default ``True ``
@@ -202,16 +208,25 @@ low_memory : boolean, default ``True``
202208 use the ``chunksize `` or ``iterator `` parameter to return the data in chunks.
203209 (Only valid with C parser)
204210buffer_lines : int, default None
205- DEPRECATED: this argument will be removed in a future version because its
206- value is not respected by the parser
211+
212+ .. deprecated :: 0.19.0
213+
214+ Argument removed because its value is not respected by the parser
215+
207216compact_ints : boolean, default False
208- DEPRECATED: this argument will be removed in a future version
217+
218+ .. deprecated :: 0.19.0
219+
220+ Argument moved to ``pd.to_numeric ``
209221
210222 If ``compact_ints `` is ``True ``, then for any column that is of integer dtype, the
211223 parser will attempt to cast it as the smallest integer ``dtype `` possible, either
212224 signed or unsigned depending on the specification from the ``use_unsigned `` parameter.
213225use_unsigned : boolean, default False
214- DEPRECATED: this argument will be removed in a future version
226+
227+ .. deprecated :: 0.18.2
228+
229+ Argument moved to ``pd.to_numeric ``
215230
216231 If integer columns are being compacted (i.e. ``compact_ints=True ``), specify whether
217232 the column should be compacted to the smallest signed or unsigned integer dtype.
0 commit comments