-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CLN: rename get_block_values, simplify #32521
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
Conversation
""" | ||
return self.get_values(dtype=dtype) | ||
# TODO(2DEA): reshape will be unnecessary with 2D EAs |
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.
Putting such comments in several places won't make this happen ... (if you want this, you will need to lead a discussion about it)
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.
experience shows that discussion turns on amounts of complexity; marking these will allow us to pseudo-quantify that
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.
agree with both of you! these do have good placeholders, but am skeptical of 2D EA.
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.
Minor comment, +1 in general on the rename
""" | ||
return self.get_values(dtype=dtype) |
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.
Why not keep it as get_values()
(but remove the dtype, since that is not used) ? The get_values already handles the reshape, avoiding the need to keep track of it here as well.
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.
Because get_values
is next up on the chopping block
""" | ||
return self.get_values(dtype=dtype) | ||
# TODO(2DEA): reshape will be unnecessary with 2D EAs |
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.
agree with both of you! these do have good placeholders, but am skeptical of 2D EA.
cc @WillAyd name more explicit, implementation more transparent.