-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
DOC: Add MultiIndex.get_locs to generated reference #30234
DOC: Add MultiIndex.get_locs to generated reference #30234
Conversation
@jorisvandenbossche I pushed some formatting changes to get this passing. |
|
||
Examples | ||
-------- | ||
>>> mi = pd.MultiIndex.from_arrays([list('abb'), list('def')]) | ||
|
||
>>> mi.get_locs('b') | ||
>>> mi.get_locs('b') # doctest: +SKIP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These were failing on the dtype=int64
part. That's only present in the repr on 32-bit systems IIRC, so easier to skip.
Just the 32-bit failure being handled elsewhere. Will merge when travis passes. |
Things should be good on master once this is merged, thanks to #30237. |
Thanks for the fixup! |
* DOC: Add MultiIndex.get_locs to generated reference * fixups
* DOC: Add MultiIndex.get_locs to generated reference * fixups
This should fix the failing CI, see #30226
CLoses #30235