Skip to content

Commit efb5dc0

Browse files
author
araraonline
committed
Comment _unique_indices
1 parent 76c3e5d commit efb5dc0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/core/indexes/api.py

+4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ def _union_indexes(indexes, sort=True):
9696
indexes, kind = _sanitize_and_check(indexes)
9797

9898
def _unique_indices(inds):
99+
"""Convert indexes to lists and concatenate them, removing duplicates
100+
101+
The final dtype is inferred.
102+
"""
99103
def conv(i):
100104
if isinstance(i, Index):
101105
i = i.tolist()

0 commit comments

Comments
 (0)