8000 REGR: Preserve order by default in Index.intersection by TomAugspurger · Pull Request #24967 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

REGR: Preserve order by default in Index.intersection #24967

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed docstring
  • Loading branch information
TomAugspurger committed Jan 28, 2019
commit ee933db013a7b5ca67d1e9153875500817bdc8f9
2 changes: 1 addition & 1 deletion pandas/core/indexes/datetimes.py
5CCF
Original file line number Diff line numberDiff line change
Expand Up @@ -603,7 +603,7 @@ def intersection(self, other, sort=False):
----------
other : DatetimeIndex or array-like
sort : bool, default True
Sort the resulting MultiIndex if possible
Sort the resulting index if possible.

.. versionadded:: 0.24.0

Expand Down
0