-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
REF: share delete, putmask, insert between ndarray-backed EA indexes #37529
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
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.
lgtm ping on green (comments are for followon)
) | ||
if isinstance(loc, slice) and loc.step in (1, None): | ||
if loc.start in (0, None) or loc.stop in (len(self), None): | ||
elif self.freq is not None: |
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.
i am not sure that these specific freq routines are really worth it given the extra code. Can't we just re-infer the freq? (sure if we do this constantly its not as performant, but this is not likey a common case).
ok for here, but if you can have a look at some point
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.
thats a reasonable thought. i recently found a PITA bug in infer_freq
though, so definitely not until that is sorted out
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.
kk maybe worthile to create an issue to see what implications / address later is.
No description provided.