-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
MAINT: More friendly error msg on Index overflow #21377
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
Marked this for |
Codecov Report
@@ Coverage Diff @@
## master #21377 +/- ##
==========================================
+ Coverage 91.89% 91.89% +<.01%
==========================================
Files 153 153
Lines 49596 49599 +3
==========================================
+ Hits 45576 45579 +3
Misses 4020 4020
Continue to review full report at Codecov.
|
ok seems reasonable. |
Cool. lmk if there are any changes that need to be made to make this merge-able. |
@jreback : friendly ping |
Display a more friendly error message when there is an OverflowError during Index construction. Partially addresses pandas-devgh-15832.
Partially addresses pandas-devgh-15823.
8719675
to
44e95e6
Compare
yep looks fine. let's wait till 0.23.2 whatsnew is in (I see you have PR for that), but don't merge unless @TomAugspurger releases. |
Just to clarify: Are you saying to hold on both PR's until @TomAugspurger releases? Or just this one? |
yes hold on both. |
nvm this is fine. |
* MAINT: More useful error msg on Index overflow Display a more friendly error message when there is an OverflowError during Index construction. Partially addresses pandas-devgh-15832. * DOC: Clarify how Index.__new__ handles dtype Partially addresses pandas-devgh-15823.
* MAINT: More useful error msg on Index overflow Display a more friendly error message when there is an OverflowError during Index construction. Partially addresses pandas-devgh-15832. * DOC: Clarify how Index.__new__ handles dtype Partially addresses pandas-devgh-15823.
Display a more friendly error message when there is an
OverflowError
duringIndex
construction.Partially addresses #15832.