Skip to content

Commit ca2ac60

Browse files
committed
Review (jreback)
1 parent 6838613 commit ca2ac60

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/source/whatsnew/v0.25.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Other Enhancements
2121

2222
- :meth:`Timestamp.replace` now supports the ``fold`` argument to disambiguate DST transition times (:issue:`25017`)
2323
- :meth:`DataFrame.at_time` and :meth:`Series.at_time` now support :meth:`datetime.time` objects with timezones (:issue:`24043`)
24-
- :meth:`DataFrame.set_index` now works for instances of ``abc.Iterator``, provided their output is of the same length as the calling frame (:issue:`22484`)
24+
- :meth:`DataFrame.set_index` now works for instances of ``abc.Iterator``, provided their output is of the same length as the calling frame (:issue:`22484`, :issue:`24984`)
2525
-
2626

2727
.. _whatsnew_0250.api_breaking:

pandas/tests/frame/test_alter_axes.py

+1
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ def test_set_index_raise_on_type(self, frame_of_index_cols, box,
283283
@pytest.mark.parametrize('drop', [True, False])
284284
def test_set_index_raise_on_len(self, frame_of_index_cols, box, length,
285285
drop, append):
286+
# GH 24984
286287
df = frame_of_index_cols # has length 5
287288

288289
values = np.random.randint(0, 10, (length,))

0 commit comments

Comments
 (0)