-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Docstring for comparison operators has "=!" instead of "!=" #36075
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
Comments
take |
This fixes pandas-dev#36075.
From a comment on the PR #36077 (comment):
I haven't yet looked into it, just reopening so it's not forgotten |
@MarcoGorelli is there anything left to do here? |
@jbrockmendel and @MarcoGorelli, I don't believe there is anything left to do here. I was pretty certain that my tiny docstring correction could not have broken building the docs and my commit has been part of the main line for quite a while now including several pandas releases. This tells me that whatever was actually causing the doc build failures has also been addressed by some other work. |
Agreed, thanks for closing, looks like I just forgot to get back to this, sorry 😞 |
Location of the documentation
Shows up in all the flexible comparison docstrings like "https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.ne.html". The typo is in the
_flex_comp_doc_FRAME
shared docstring found incore/ops/docstrings.py
.Documentation problem
The docstring says
=!
instead of!=
for the not-equals comparison.Suggested fix for documentation
Just need to change it to
!=
.The text was updated successfully, but these errors were encountered: