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.2.0.rst
+9
Original file line number
Diff line number
Diff line change
@@ -251,6 +251,14 @@ DataFrame. (:issue:`54938`)
251
251
)
252
252
series.struct.explode()
253
253
254
+
Use :meth:`Series.struct.field` to index into a (possible nested)
255
+
struct field.
256
+
257
+
258
+
.. ipython:: python
259
+
260
+
series.struct.field("project")
261
+
254
262
.. _whatsnew_220.enhancements.list_accessor:
255
263
256
264
Series.list accessor for PyArrow list data
@@ -797,6 +805,7 @@ Strings
797
805
- Bug in :meth:`Series.str.replace` when ``n < 0`` for :class:`ArrowDtype` with ``pyarrow.string`` (:issue:`56404`)
798
806
- Bug in :meth:`Series.str.startswith` and :meth:`Series.str.endswith` with arguments of type ``tuple[str, ...]`` for :class:`ArrowDtype` with ``pyarrow.string`` dtype (:issue:`56579`)
799
807
- Bug in :meth:`Series.str.startswith` and :meth:`Series.str.endswith` with arguments of type ``tuple[str, ...]`` for ``string[pyarrow]`` (:issue:`54942`)
808
+
- Bug in :meth:`str.fullmatch` when ``dtype=pandas.ArrowDtype(pyarrow.string()))`` allows partial matches when regex ends in literal //$ (:issue:`56652`)
800
809
- Bug in comparison operations for ``dtype="string[pyarrow_numpy]"`` raising if dtypes can't be compared (:issue:`56008`)
0 commit comments