-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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: Exception to the boolean frame comparison guarantee #16155
Comments
ResidentMario
changed the title
[BUG] Exception to the boolean frame comparison guarantee
BUG: Exception to the boolean frame comparison guarantee
Apr 26, 2017
xref #4537 |
The obvious solution would be to forcefully upcast any Highly inelegant, but perhaps necessary. |
(closing because I don't think this can happen in master, just wanted to create something I can reference later) |
ResidentMario
added a commit
to ResidentMario/pandas
that referenced
this issue
Apr 27, 2017
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The implementation for
core._com_method_FRAME
makes the following note:However, I think I stumbled on an exception here.
The root cause is that
astype(bool)
has a "hole" in it in the case ofdatetime
dtypes. The following:Raises:
If you get this frame as a
fillna
output (not possible on master, but possible in the feature branch I am working on), it will raise this same error when passed through_com_method_FRAME
, due to:This is a problem in PR#15653.
The text was updated successfully, but these errors were encountered: