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/v0.23.2.txt
+14-3
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ and bug fixes. We recommend that all users upgrade to this version.
16
16
Fixed Regressions
17
17
~~~~~~~~~~~~~~~~~
18
18
19
-
-
19
+
- Fixed regression in :meth:`to_csv` when handling file-like object incorrectly (:issue:`21471`)
20
20
-
21
21
22
22
.. _whatsnew_0232.performance:
@@ -27,6 +27,7 @@ Performance Improvements
27
27
- Improved performance of membership checks in :class:`CategoricalIndex`
28
28
(i.e. ``x in ci``-style checks are much faster). :meth:`CategoricalIndex.contains`
29
29
is likewise much faster (:issue:`21369`)
30
+
- Improved performance of :meth:`MultiIndex.is_unique` (:issue:`21522`)
30
31
-
31
32
32
33
Documentation Changes
@@ -45,11 +46,15 @@ Bug Fixes
45
46
-
46
47
-
47
48
49
+
**Timedelta**
50
+
51
+
- Bug in :class:`Timedelta` where non-zero timedeltas shorter than 1 microsecond were considered False (:issue:`21484`)
52
+
48
53
**Conversion**
49
54
55
+
- Bug in constructing :class:`Index` with an iterator or generator (:issue:`21470`)
56
+
- Bug in :meth:`Series.nlargest` for signed and unsigned integer dtypes when the minimum value is present (:issue:`21426`)
50
57
51
-
-
52
-
-
53
58
54
59
**Indexing**
55
60
@@ -77,8 +82,14 @@ Bug Fixes
77
82
-
78
83
79
84
**Timezones**
85
+
80
86
- Bug in :class:`Timestamp` and :class:`DatetimeIndex` where passing a :class:`Timestamp` localized after a DST transition would return a datetime before the DST transition (:issue:`20854`)
81
87
- Bug in comparing :class:`DataFrame`s with tz-aware :class:`DatetimeIndex` columns with a DST transition that raised a ``KeyError`` (:issue:`19970`)
88
+
- Bug in :meth:`DatetimeIndex.shift` where an ``AssertionError`` would raise when shifting across DST (:issue:`8616`)
89
+
- Bug in :class:`Timestamp` constructor where passing an invalid timezone offset designator (``Z``) would not raise a ``ValueError``(:issue:`8910`)
90
+
- Bug in :meth:`Timestamp.replace` where replacing at a DST boundary would retain an incorrect offset (:issue:`7825`)
91
+
- Bug in :meth:`DatetimeIndex.reindex` when reindexing a tz-naive and tz-aware :class:`DatetimeIndex` (:issue:`8306`)
92
+
- Bug in :meth:`DatetimeIndex.resample` when downsampling across a DST boundary (:issue:`8531`)
0 commit comments