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
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,19 +22,23 @@ become the default string dtype in pandas 3.0. See
22
22
23
23
Improvements
24
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`)
25
29
- Accessing the underlying NumPy array of a DataFrame or Series will return a read-only
26
30
array if the array shares data with the original DataFrame or Series (:ref:`copy_on_write_read_only_na`).
27
31
This logic is expanded to accessing the underlying pandas ExtensionArray
28
32
through ``.array`` (or ``.values`` depending on the dtype) as well (:issue:`61925`).
29
33
30
-
31
34
.. _whatsnew_233.string_fixes.bugs:
32
35
33
36
Bug fixes
34
37
^^^^^^^^^
35
38
- 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`)
36
39
- Fix regression in ``~Series.str.contains``, ``~Series.str.match`` and ``~Series.str.fullmatch``
37
40
with a compiled regex and custom flags (:issue:`62240`)
41
+
- Fix :meth:`Series.str.fullmatch` not matching patterns with groups correctly for the Arrow-backed string dtype (:issue:`61072`)
0 commit comments