Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
toobaz committed Aug 20, 2017
1 parent d5c7d77 commit ce04aed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pandas/core/dtypes/concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,11 @@ def convert_sparse(x, axis):


def _concat_indexes_same_dtype_rangeindex(indexes):
# Concatenates multiple RangeIndex instances. All members of "indexes" must
# be of type RangeIndex; result will be RangeIndex if possible, Int64Index
# otherwise. E.g.:
# indexes = [RangeIndex(3), RangeIndex(3, 6)] -> RangeIndex(6)
# indexes = [RangeIndex(3), RangeIndex(4, 6)] -> Int64Index([0,1,2,4,5])

start = step = next = None

Expand Down

0 comments on commit ce04aed

Please sign in to comment.