File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ Datetimelike
131
131
132
132
- Fixed bug where two :class:`DateOffset` objects with different ``normalize`` attributes could evaluate as equal (:issue:`21404`)
133
133
- Bug in :class:`Index` with ``datetime64[ns, tz]`` dtype that did not localize integer data correctly (:issue:`20964`)
134
- - Fixed bug where ` describe` method on tz-aware datetimes did not show `first` and `last` result (:issue:`21328`)
134
+ - Fixed bug where :meth:`DataFrame. describe` and :meth:`Series.describe` on tz-aware datetimes did not show `first` and `last` result (:issue:`21328`)
135
135
136
136
Timedelta
137
137
^^^^^^^^^
Original file line number Diff line number Diff line change @@ -418,6 +418,7 @@ def test_describe_timedelta_values(self):
418
418
assert repr (res ) == exp_repr
419
419
420
420
def test_describe_tz_values (self , tz_naive_fixture ):
421
+ # GH 21332
421
422
tz = tz_naive_fixture
422
423
s1 = Series (range (5 ))
423
424
start = Timestamp (2018 , 1 , 1 )
Original file line number Diff line number Diff line change @@ -337,6 +337,7 @@ def test_describe(self):
337
337
tm .assert_series_equal (result , expected )
338
338
339
339
def test_describe_with_tz (self , tz_naive_fixture ):
340
+ # GH 21332
340
341
tz = tz_naive_fixture
341
342
name = tz_naive_fixture
342
343
start = Timestamp (2018 , 1 , 1 )
You can’t perform that action at this time.
0 commit comments