Skip to content

Commit ef9ffe9

Browse files
committed
Fixes
1 parent 30e0146 commit ef9ffe9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doc/source/whatsnew/v3.0.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ Groupby/resample/rolling
615615
- Bug in :meth:`DataFrameGroupBy.cumsum` where it did not return the correct dtype when the label contained ``None``. (:issue:`58811`)
616616
- Bug in :meth:`DataFrameGroupby.transform` and :meth:`SeriesGroupby.transform` with a reducer and ``observed=False`` that coerces dtype to float when there are unobserved categories. (:issue:`55326`)
617617
- Bug in :meth:`Rolling.apply` where the applied function could be called on fewer than ``min_period`` periods if ``method="table"``. (:issue:`58868`)
618-
- Bug in :meth:`Series.resample` could raise when the the date range ended shortly before DST. (:issue:`58380`)
618+
- Bug in :meth:`Series.resample` could raise when the the date range ended shortly before a non-existent time. (:issue:`58380`)
619619

620620
Reshaping
621621
^^^^^^^^^

pandas/tests/resample/test_datetime_index.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,6 @@ def test_resample_dst_midnight_last_nonexistent():
968968
expected = Series([len(ts)], index=DatetimeIndex([ts.index[0]], freq="7D"))
969969

970970
result = ts.resample("7D").sum()
971-
print(f"{result=}")
972971
tm.assert_series_equal(result, expected)
973972

974973

0 commit comments

Comments
 (0)