Skip to content

Commit

Permalink
BUG: workaround failure of pandas-dev#17378 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
toobaz committed Apr 24, 2018
1 parent 4cbd7c1 commit 8d2e40d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2755,6 +2755,8 @@ def union(self, other):
allow_fill=False)
result = _concat._concat_compat((lvals, other_diff))

# Workaround failure of #17378 on Windows
lvals[0] < other_diff[0]
else:
result = lvals

Expand Down

0 comments on commit 8d2e40d

Please sign in to comment.