Skip to content

Commit af77040

Browse files
committed
remove inheritance from 'object'
1 parent 743d498 commit af77040

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.25.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The repr now looks like this:
7878
7979
Previously, outputting a :class:`MultiIndex` printed all the ``levels`` and
8080
``codes`` of the ``MultiIndex``, which was visually unappealing and made
81-
the output more difficult to navigate:
81+
the output more difficult to navigate. For example (limiting the range to 5):
8282

8383
.. code-block:: ipython
8484

pandas/tests/indexes/multi/test_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_repr_max_seq_item_setting(idx):
7676
assert '...' not in str(idx)
7777

7878

79-
class TestRepr(object):
79+
class TestRepr:
8080

8181
def test_repr(self, idx):
8282
result = idx[:1].__repr__()

0 commit comments

Comments
 (0)