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
@@ -1232,6 +1232,10 @@ Other
1232
1232
- Fixed bug in the :meth:`Series.rank` with object dtype and extremely small float values (:issue:`62036`)
1233
1233
- Fixed bug where the :class:`DataFrame` constructor misclassified array-like objects with a ``.name`` attribute as :class:`Series` or :class:`Index` (:issue:`61443`)
1234
1234
- Fixed regression in :meth:`DataFrame.from_records` not initializing subclasses properly (:issue:`57008`)
1235
+
- Accessing the underlying NumPy array of a DataFrame or Series will return a read-only
1236
+
array if the array shares data with the original DataFrame or Series (:ref:`copy_on_write_read_only_na`).
1237
+
This logic is expanded to accessing the underlying pandas ExtensionArray
1238
+
through ``.array`` (or ``.values`` depending on the dtype) as well (:issue:`61925`).
0 commit comments