-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
(x + 1) % 1
inside test_multi.py
#19092
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
Labels
Comments
do you have an example where this is incorrect? |
No, i just wanted to raise the attention in case this is not on purpose. |
I am still not clear on what the issue is? are you saying the test is wrong? you can certainly enhance it if you want |
this is fine. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code Sample, a copy-pastable example if possible
pandas/pandas/tests/indexes/test_multi.py
Lines 170 to 171 in 9303315
Problem description
I assume this is supposed to shift the labels cyclically by one. Then
% 4
and% 2
should be used. Otherwise its at least weird to write(x + 1) % 1
instead of0
.The text was updated successfully, but these errors were encountered: