Skip to content

Commit

Permalink
changes based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdong1991 committed Feb 24, 2019
1 parent f9e52cc commit a1a8891
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.25.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Other Enhancements
- Indexing of ``DataFrame`` and ``Series`` now accepts zerodim ``np.ndarray`` (:issue:`24919`)
- :meth:`Timestamp.replace` now supports the ``fold`` argument to disambiguate DST transition times (:issue:`25017`)
- :meth:`DataFrame.at_time` and :meth:`Series.at_time` now support :meth:`datetime.time` objects with timezones (:issue:`24043`)
- Add ``casefold`` to ``Series.str`` (:issue:`25405`)
- ``Series.str`` has gained :meth:`Series.str.casefold` method to removes all case distinctions present in a string (:issue:`25405`)

.. _whatsnew_0250.api_breaking:

Expand Down
1 change: 1 addition & 0 deletions pandas/core/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2944,6 +2944,7 @@ def rindex(self, sub, start=0, end=None):
Series.str.swapcase : Converts uppercase to lowercase and lowercase to
uppercase.
Series.str.casefold: Removes all case distinctions in the string.
.. versionadded:: 0.25.0
Examples
--------
Expand Down

0 comments on commit a1a8891

Please sign in to comment.