Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
topper-123 committed Jun 5, 2019
1 parent 68d5efb commit 518ef5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.25.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ Other Deprecations
- The internal attributes ``_start``, ``_stop`` and ``_step`` attributes of :class:`RangeIndex` have been deprecated.
Use the public attributes :attr:`~RangeIndex.start`, :attr:`~RangeIndex.stop` and :attr:`~RangeIndex.step` instead (:issue:`26581`).
- The :meth:`DataFrame.swapaxes` and :meth:`Series.swapaxes` methods are deprecated and will be removed in a future version.
Use :meth:`DataFrame.transpose` and :meth:`Series.transpose` instead(:issue:`26654`).
Use :meth:`DataFrame.transpose` and :meth:`Series.transpose` instead (:issue:`26654`).


.. _whatsnew_0250.prior_deprecations:
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/generic/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def test_size_compat(self):

def test_split_compat(self):
# xref GH8846
o = self._construct(shape=10)
o = self._construct(shape=10).values
assert len(np.array_split(o, 5)) == 5
assert len(np.array_split(o, 2)) == 2

Expand Down

0 comments on commit 518ef5d

Please sign in to comment.