Closed
Description
In [5]: pd.Series([1], dtype='Int64') / pd.Series([0], dtype='Int64')
Out[5]:
0 NaN
dtype: float64
Where as
In [6]: pd.Series([1], dtype='int64') / pd.Series([0], dtype='int64')
Out[6]:
0 inf
dtype: float64
It's because of this line:
pandas/pandas/core/arrays/integer.py
Line 545 in 0480f4c
Is it intentional for the new extension integer type to have different behavior here?