We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d16a3a3 commit 4288cd2Copy full SHA for 4288cd2
pandas/core/indexes/base.py
@@ -51,7 +51,6 @@
51
ABCCategorical,
52
ABCDataFrame,
53
ABCDatetimeIndex,
54
- ABCIndexClass,
55
ABCIntervalIndex,
56
ABCMultiIndex,
57
ABCPandasArray,
@@ -97,8 +96,6 @@
97
96
_index_shared_docs = dict()
98
str_t = str
99
100
-str_t = str
101
-
102
103
def _make_comparison_op(op, cls):
104
def cmp_method(self, other):
pandas/core/indexes/numeric.py
@@ -334,7 +334,7 @@ def _convert_index_indexer(self, keyarr):
334
335
def _wrap_joined_index(self, joined, other):
336
name = get_op_result_name(self, other)
337
- return UInt64Index(joined, name=name) # TODO: use type(self) to share?
+ return UInt64Index(joined, name=name)
338
339
@classmethod
340
def _assert_safe_casting(cls, data, subarr):
0 commit comments