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/v3.0.0.rst
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1359,6 +1359,10 @@ Other
1359
1359
- Fixed bug in the :meth:`Series.rank` with object dtype and extremely small float values (:issue:`62036`)
1360
1360
- Fixed bug where the :class:`DataFrame` constructor misclassified array-like objects with a ``.name`` attribute as :class:`Series` or :class:`Index` (:issue:`61443`)
1361
1361
- Fixed regression in :meth:`DataFrame.from_records` not initializing subclasses properly (:issue:`57008`)
1362
+
- Accessing the underlying NumPy array of a DataFrame or Series will return a read-only
1363
+
array if the array shares data with the original DataFrame or Series (:ref:`copy_on_write_read_only_na`).
1364
+
This logic is expanded to accessing the underlying pandas ExtensionArray
1365
+
through ``.array`` (or ``.values`` depending on the dtype) as well (:issue:`61925`).
0 commit comments