Skip to content

Commit 6eb0d28

Browse files
committed
Document additionally an existing issue number pandas-dev#19995 for GroupBy.shift
1 parent 4b93034 commit 6eb0d28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.25.2.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Groupby/resample/rolling
7878
^^^^^^^^^^^^^^^^^^^^^^^^
7979

8080
- Bug incorrectly raising an ``IndexError`` when passing a list of quantiles to :meth:`pandas.core.groupby.DataFrameGroupBy.quantile` (:issue:`28113`).
81-
- Bug in :meth:`pandas.core.groupby.GroupBy.shift`, :meth:`pandas.core.groupby.GroupBy.bfill` and :meth:`pandas.core.groupby.GroupBy.ffill` where timezone information would be dropped (:issue:`27992`)
81+
- Bug in :meth:`pandas.core.groupby.GroupBy.shift`, :meth:`pandas.core.groupby.GroupBy.bfill` and :meth:`pandas.core.groupby.GroupBy.ffill` where timezone information would be dropped (:issue:`19995`, :issue:`27992`)
8282
-
8383
-
8484
-

pandas/tests/groupby/test_groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1929,7 +1929,7 @@ def test_groupby_axis_1(group_name):
19291929
],
19301930
)
19311931
def test_shift_bfill_ffill_tz(tz_naive_fixture, op, expected):
1932-
# GH27992: Check that timezone does not drop in shift, bfill, and ffill
1932+
# GH19995, GH27992: Check that timezone does not drop in shift, bfill, and ffill
19331933
tz = tz_naive_fixture
19341934
data = {
19351935
"id": ["A", "B", "A", "B", "A", "B"],

0 commit comments

Comments
 (0)