Skip to content

Commit e8a4f82

Browse files
committed
move cache_dates var in docstring on the rigth place
1 parent 72cfe24 commit e8a4f82

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/io/parsers.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,12 @@
235235
arguments.
236236
dayfirst : bool, default False
237237
DD/MM format dates, international and European format.
238+
cache_dates : boolean, default True
239+
If True, use a cache of unique, converted dates to apply the datetime
240+
conversion. May produce significant speed-up when parsing duplicate
241+
date strings, especially ones with timezone offsets.
242+
243+
.. versionadded:: 0.23.0
238244
iterator : bool, default False
239245
Return TextFileReader object for iteration or getting chunks with
240246
``get_chunk()``.
@@ -327,12 +333,6 @@
327333
values. The options are `None` for the ordinary converter,
328334
`high` for the high-precision converter, and `round_trip` for the
329335
round-trip converter.
330-
cache_dates : boolean, default True
331-
If True, use a cache of unique, converted dates to apply the datetime
332-
conversion. May produce significant speed-up when parsing duplicate
333-
date strings, especially ones with timezone offsets.
334-
335-
.. versionadded:: 0.23.0
336336
337337
Returns
338338
-------

0 commit comments

Comments
 (0)