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.1.rst
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,29 +13,28 @@ including other versions of pandas.
13
13
14
14
Fixed regressions
15
15
~~~~~~~~~~~~~~~~~
16
+
- Fixed regression in :func:`read_hdf` reading a file written by pandas <= 2.2 with a datetime64 column (:issue:`64006`)
16
17
- Fixed regression in :func:`to_timedelta` when converting a list with float and int (:issue:`64044`)
17
18
- Fixed regression in :meth:`DataFrame.groupby` and :meth:`Series.groupby` when grouping on categorical data with NA values, ``observed=False``, and ``dropna=True`` (:issue:`52445`)
19
+
- Fixed regression in :meth:`DataFrame.loc` when setting new row and new columns simultaneously filling existing columns with ``b''`` instead of ``NaN`` (:issue:`58316`)
18
20
- Fixed regression in :meth:`DataFrame.reindex` when using a string fill value (:issue:`63993`)
21
+
- Fixed regression in comparing a string column or index with a :py:class:`range` object (:issue:`63429`)
22
+
- Fixed regression in comparison operation with a zero-dimensional subclass of ``np.ndarray`` (:issue:`63205`)
19
23
- Fixed regression in the :class:`DataFrame` and :meth:`DataFrame.from_records` constructor with a list of dicts with a missing value indicator as key (:issue:`63889`)
20
24
- Fixed regression when calling ``numpy.random``'s ``permutation()`` on a (pyarrow-backed) string :class:`Series` (:issue:`63935`)
21
-
- Fixed regression where :meth:`Series.str.contains` and :meth:`Series.str.replace` on pyarrow-backed strings rejected RE2 unicode escapes like ``\x{...}`` and ``\p{...}`` (:issue:`63901`)
25
+
- Fixed regression where methods such as :meth:`Series.str.contains` and :meth:`Series.str.replace` on pyarrow-backed strings rejected RE2 unicode escapes like ``\x{...}`` and ``\p{...}`` (:issue:`63901`)
- Added additional typing aliases in :py:mod:`pandas.api.typing.aliases` (:issue:`64098`)
31
35
- Allow :class:`.ExtensionArray` to have dtypes involving :class:`numpy.void` (:issue:`54810`)
32
36
- Fixed a bug in :func:`col` where unary operators (``-``, ``+``, ``abs``) were not supported (:issue:`63939`)
33
-
- Fixed a bug in the :func:`comparison_op` raising a ``TypeError`` for zerodim
34
-
subclasses of ``np.ndarray`` (:issue:`63205`)
35
-
- Added additional typing aliases in :py:mod:`pandas.api.typing.aliases` (:issue:`64098`)
36
37
- Fixed bug in :func:`merge` where NaN values in pyarrow-backed string dtype join keys were incorrectly matched with non-NaN values on Windows with pyarrow 21 (:issue:`64060`)
37
-
- Fixed bug in :func:`read_hdf` reading a file written by pandas <= 2.2 with a datetime64 column (:issue:`64006`)
38
-
- Fixed bug in :meth:`DataFrame.loc` when setting new row and new columns simultaneously filling existing columns with ``b''`` instead of ``NaN`` (:issue:`58316`)
39
38
- Fixed thread safety issues in :class:`DataFrame` internals on the free-threaded build (:issue:`63685`).
40
39
- Prevent buffer overflow in :meth:`Rolling.corr` and :meth:`Rolling.cov` with variable windows when passing ``other`` with a longer index than the original window. This now raises ``ValueError`` (:issue:`62937`)
0 commit comments