-
Notifications
You must be signed in to change notification settings - Fork 0
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
BUG: fillna maximum recursion depth exceeded in cmp (GH18159). #5
base: master
Are you sure you want to change the base?
Conversation
9884e41
to
254193b
Compare
Codecov Report
@@ Coverage Diff @@
## master #5 +/- ##
=========================================
Coverage ? 91.58%
=========================================
Files ? 153
Lines ? 51250
Branches ? 0
=========================================
Hits ? 46938
Misses ? 4312
Partials ? 0
Continue to review full report at Codecov.
|
pandas/core/internals.py
Outdated
return (isinstance(element, (float, int, np.floating, np.int_)) and | ||
not isinstance(element, (bool, np.bool_, datetime, timedelta, | ||
return ( | ||
isinstance(element, (float, int, np.floating, np.int_, np.long)) |
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 see you have addd np.long
here. What do you think about adding a test for that case, exactly same as in original issue on Github?
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.
Done.
47406dd
to
998ee68
Compare
Squash commits please, then proceed with PR to upstream. |
54303dd
to
7380624
Compare
0e42b1f
to
1647a72
Compare
c21485f
to
7474a3b
Compare
…with both tz-naive and tz-aware (pandas-dev#18361)
…#18388) Added teardowns for hdfstore, io and packers benchmarks.
closes pandas-dev#18113 Author: Grzegorz Konefał <grzegorz.konefal@reef.pl> Author: Krzysztof Chomski <krzysztof.chomski@reef.pl> Closes pandas-dev#18448 from gkonefal-reef/GH18113 and squashes the following commits: 21cbe79 [Grzegorz Konefał] Comments applied 290b49c [Krzysztof Chomski] BLD: since we already use setuptools, let's remove the optional logic in setup.py (GH18113).
fdef49a
to
fe7360c
Compare
Deprecated in 0.19.0. xref pandas-devgh-14007.
Deprecated in 0.17.0. xref pandas-devgh-13735.
Deprecated in 0.19.0 xref pandas-devgh-13854.
git diff upstream/master -u -- "*.py" | flake8 --diff