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/v1.0.0.rst
+3-2
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Dedicated string data type
56
56
^^^^^^^^^^^^^^^^^^^^^^^^^^
57
57
58
58
We've added :class:`StringDtype`, an extension type dedicated to string data.
59
-
Previously, strings were typically stored in object-dtype NumPy arrays.
59
+
Previously, strings were typically stored in object-dtype NumPy arrays. (:issue:`29975`)
60
60
61
61
.. warning::
62
62
@@ -938,6 +938,7 @@ Reshaping
938
938
- :func:`qcut` and :func:`cut` now handle boolean input (:issue:`20303`)
939
939
- Fix to ensure all int dtypes can be used in :func:`merge_asof` when using a tolerance value. Previously every non-int64 type would raise an erroneous ``MergeError`` (:issue:`28870`).
940
940
- Better error message in :func:`get_dummies` when `columns` isn't a list-like value (:issue:`28383`)
941
+
- Bug in :meth:`Index.join` that caused infinite recursion error for mismatched ``MultiIndex`` name orders. (:issue:`25760`, :issue:`28956`)
941
942
- Bug :meth:`Series.pct_change` where supplying an anchored frequency would throw a ValueError (:issue:`28664`)
942
943
- Bug where :meth:`DataFrame.equals` returned True incorrectly in some cases when two DataFrames had the same columns in different orders (:issue:`28839`)
943
944
- Bug in :meth:`DataFrame.replace` that caused non-numeric replacer's dtype not respected (:issue:`26632`)
@@ -977,7 +978,7 @@ Other
977
978
- Bug in :meth:`Series.count` raises if use_inf_as_na is enabled (:issue:`29478`)
978
979
- Bug in :class:`Index` where a non-hashable name could be set without raising ``TypeError`` (:issue:`29069`)
979
980
- Bug in :class:`DataFrame` constructor when passing a 2D ``ndarray`` and an extension dtype (:issue:`12513`)
980
-
-
981
+
- Bug in :meth:`DaataFrame.to_csv` when supplied a series with a ``dtype="string"`` and a ``na_rep``, the ``na_rep`` was being truncated to 2 characters. (:issue:`29975`)
0 commit comments