Skip to content

BUG: Division over ExtensionArrays does not set mask correctly #56451

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

Closed
2 of 3 tasks
DavideCanton opened this issue Dec 11, 2023 · 2 comments
Closed
2 of 3 tasks

BUG: Division over ExtensionArrays does not set mask correctly #56451

DavideCanton opened this issue Dec 11, 2023 · 2 comments
Labels
Bug Duplicate Report Duplicate issue or pull request PDEP missing values Issues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprint

Comments

@DavideCanton
Copy link

DavideCanton commented Dec 11, 2023

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd

v = pd.Series([1.0, 0.0], dtype="Float64")
s = v / v

print(pd.isna(s)) # prints [False, False]

Issue Description

The above code should print a series containing [False, True] since 0/0 should return a float nan, but prints [False, False].

It seems that s._values._mask is [False, False], since the nan is not converted to pd.NA, that is expected for the dtype Float64. Maybe there is some issue in the handling of the mask of the result of a binary operation?

Expected Behavior

It should print [False, True].

Installed Versions

INSTALLED VERSIONS

commit : a671b5a
python : 3.12.0.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19045
machine : AMD64
processor : Intel64 Family 6 Model 141 Stepping 1, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : Italian_Italy.1252

pandas : 2.1.4
numpy : 1.26.0
pytz : 2023.3.post1
dateutil : 2.8.2
setuptools : 68.2.2
pip : 23.2.1
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : 8.16.1
pandas_datareader : None
bs4 : None
bottleneck : None
dataframe-api-compat: None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.8.0
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 14.0.1
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None

@DavideCanton DavideCanton added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Dec 11, 2023
@DavideCanton DavideCanton changed the title BUG: BUG: Division over ExtensionArrays does not set mask correctly Dec 11, 2023
@DavideCanton
Copy link
Author

Probably it's a duplicate of #53887

@jbrockmendel jbrockmendel added the PDEP missing values Issues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprint label Dec 15, 2023
@rhshadrach
Copy link
Member

Agreed @DavideCanton - closing as a duplicate.

@rhshadrach rhshadrach added Duplicate Report Duplicate issue or pull request and removed Needs Triage Issue that has not been reviewed by a pandas team member labels Dec 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Duplicate Report Duplicate issue or pull request PDEP missing values Issues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprint
Projects
None yet
Development

No branches or pull requests

3 participants