Skip to content

Commit 4288cd2

Browse files
committed
cln
1 parent d16a3a3 commit 4288cd2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

pandas/core/indexes/base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
ABCCategorical,
5252
ABCDataFrame,
5353
ABCDatetimeIndex,
54-
ABCIndexClass,
5554
ABCIntervalIndex,
5655
ABCMultiIndex,
5756
ABCPandasArray,
@@ -97,8 +96,6 @@
9796
_index_shared_docs = dict()
9897
str_t = str
9998

100-
str_t = str
101-
10299

103100
def _make_comparison_op(op, cls):
104101
def cmp_method(self, other):

pandas/core/indexes/numeric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def _convert_index_indexer(self, keyarr):
334334

335335
def _wrap_joined_index(self, joined, other):
336336
name = get_op_result_name(self, other)
337-
return UInt64Index(joined, name=name) # TODO: use type(self) to share?
337+
return UInt64Index(joined, name=name)
338338

339339
@classmethod
340340
def _assert_safe_casting(cls, data, subarr):

0 commit comments

Comments
 (0)