-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: Fix TypeError in _cython_agg_blocks #29035
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. As mentioned in other PR I am hoping to do away with this block management entirely so not sure how much you want to invest in this...but of course no guarantees on that so up to you
I still very much want to see that happen. FWIW this should be the last PR in this sequence directly touching cython_agg_blocks. After this there is one more PR that implements group_add for complex dtypes at which point we can stop catching the |
thanks @jbrockmendel |
and change one of the high-level
except Exception
s in groupby.groupby toexcept (TypeError, NotImplementedError)
. The remainingTypeError
will be addressed in a separate PR. Haven't decided about the remaining NotImplementedError.cc @jreback @WillAyd.