We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hasattr(item, 'reindex_axis')
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
Block and SparseBlock each have a reindex_axis method that is not used anywhere, but a bunch of things in core.internals do a check of the form
Block
SparseBlock
reindex_axis
if hasattr(new, 'reindex_axis'): new = new.values if hasattr(mask, 'reindex_axis'): mask = mask.values
It would be nice to get rid of the unused methods. Any idea what this ducktype checks are actually intending to catch?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Block
andSparseBlock
each have areindex_axis
method that is not used anywhere, but a bunch of things in core.internals do a check of the formIt would be nice to get rid of the unused methods. Any idea what this ducktype checks are actually intending to catch?
The text was updated successfully, but these errors were encountered: