Skip to content

Commit 1c85780

Browse files
anmyachevvnlitvinov
authored andcommitted
fixed typo; writed 'cache_dates=True' in doc/source/whatsnew/v0.25.0.rst
1 parent 1b51ec6 commit 1c85780

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

asv_bench/benchmarks/io/csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def setup(self, do_cache):
226226

227227
def time_read_csv_cached(self, do_cache):
228228
# kwds setting here is used to avoid breaking tests in
229-
# previuos version of pandas, because this is api changes
229+
# previous version of pandas, because this is api changes
230230
kwds = {}
231231
if 'cache_dates' in _parser_defaults:
232232
kwds['cache_dates'] = do_cache

doc/source/whatsnew/v0.25.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Other API Changes
219219
- Comparing :class:`Timestamp` with unsupported objects now returns :py:obj:`NotImplemented` instead of raising ``TypeError``. This implies that unsupported rich comparisons are delegated to the other object, and are now consistent with Python 3 behavior for ``datetime`` objects (:issue:`24011`)
220220
- Bug in :meth:`DatetimeIndex.snap` which didn't preserving the ``name`` of the input :class:`Index` (:issue:`25575`)
221221
- The ``arg`` argument in :meth:`pandas.core.groupby.DataFrameGroupBy.agg` has been renamed to ``func`` (:issue:`26089`)
222-
- Added ``cache_dates`` parameter to :meth:`read_csv`, which allows to cache unique dates when they are parsed (:issue:`25990`)
222+
- Added ``cache_dates=True`` parameter to :meth:`read_csv`, which allows to cache unique dates when they are parsed (:issue:`25990`)
223223

224224
.. _whatsnew_0250.deprecations:
225225

0 commit comments

Comments
 (0)