File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ Other Deprecations
479
479
- The internal attributes ``_start ``, ``_stop `` and ``_step `` attributes of :class: `RangeIndex ` have been deprecated.
480
480
Use the public attributes :attr: `~RangeIndex.start `, :attr: `~RangeIndex.stop ` and :attr: `~RangeIndex.step ` instead (:issue: `26581 `).
481
481
- The :meth: `DataFrame.swapaxes ` and :meth: `Series.swapaxes ` methods are deprecated and will be removed in a future version.
482
- Use :meth: `DataFrame.transpose ` and :meth: `Series.transpose ` instead(:issue: `26654 `).
482
+ Use :meth: `DataFrame.transpose ` and :meth: `Series.transpose ` instead (:issue: `26654 `).
483
483
484
484
485
485
.. _whatsnew_0250.prior_deprecations :
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ def test_size_compat(self):
431
431
432
432
def test_split_compat (self ):
433
433
# xref GH8846
434
- o = self ._construct (shape = 10 )
434
+ o = self ._construct (shape = 10 ). values
435
435
assert len (np .array_split (o , 5 )) == 5
436
436
assert len (np .array_split (o , 2 )) == 2
437
437
You can’t perform that action at this time.
0 commit comments