You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.3.3.rst
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,24 @@ Most changes in this release are related to :class:`StringDtype` which will
18
18
become the default string dtype in pandas 3.0. See
19
19
:ref:`whatsnew_230.upcoming_changes` for more details.
20
20
21
+
.. _whatsnew_233.string_fixes.improvements:
22
+
23
+
Improvements
24
+
^^^^^^^^^^^^
25
+
- Update :meth:`DataFrame.select_dtypes` to keep selecting ``str`` columns when
26
+
specifying ``include=["object"]`` for backwards compatibility. In a future
27
+
release, this will be deprecated and code for pandas 3+ should be updated to
28
+
do ``include=["str"]`` (:issue:`61916`)
29
+
30
+
21
31
.. _whatsnew_233.string_fixes.bugs:
22
32
23
33
Bug fixes
24
34
^^^^^^^^^
25
35
- Fix bug in :meth:`Series.str.replace` using named capture groups (e.g., ``\g<name>``) with the Arrow-backed dtype would raise an error (:issue:`57636`)
26
36
- Fix regression in ``~Series.str.contains``, ``~Series.str.match`` and ``~Series.str.fullmatch``
27
37
with a compiled regex and custom flags (:issue:`62240`)
38
+
- Fix :meth:`Series.str.fullmatch` not matching patterns with groups correctly for the Arrow-backed string dtype (:issue:`61072`)
0 commit comments