8000 ENH: sort=bool keyword argument for index.difference by Giftlin · Pull Request #17878 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

ENH: sort=bool keyword argument for index.difference #17878

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
lint
  • Loading branch information
Giftlin authored Oct 18, 2017
commit 17767bfdf28ebe7e541205ac34dd83ab2c7d3717
3 changes: 2 additions & 1 deletion pandas/tests/indexes/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,8 @@ def test_union(self):
def test_union_sorting_false(self):

# GH 17839
dt_index = pd.DatetimeIndex(["20/12/2012", "15/05/2015", "1/1/2011", "1/7/2017"])
dt_index = pd.DatetimeIndex(["20/12/2012", "15/05/2015",
"1/1/2011", "1/7/2017"])
first = pd.Index([2, 0, 4, 3])
second = pd.Index([1, 4])
everything = pd.Index([2, 0, 4, 3, 1])
Expand Down
0