Skip to content

CLN: Move stuff in tests.indexes.test_numeric.py to more logical locations #41254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Some simple doc string changes
  • Loading branch information
topper-123 committed May 3, 2021
commit 9a880e59577651e8ed379edc95eedab6b6e7855c
8 changes: 6 additions & 2 deletions pandas/tests/indexes/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@


class Base:
""" base class for index sub-class tests """
"""
Base class for index sub-class tests.
"""

_index_cls: Type[Index]

Expand Down Expand Up @@ -766,7 +768,9 @@ def test_index_groupby(self, simple_index):


class NumericBase(Base):
""" base class for numeric index (incl. RangeIndex) sub-class tests """
"""
Base class for numeric index (incl. RangeIndex) sub-class tests.
"""

def test_where(self):
# Tested in numeric.test_indexing
Expand Down