BUG: equals/assert_numpy_array_equals with non-singleton NAs by jbrockmendel · Pull Request #39650 · pandas-dev/pandas (original) (raw)
Does this change behaviour of how NA-likes are currently handled in equals
and assert methods?
Eg currently we have see None or np.nan as equivalent:
In [54]: pd.Series([1, None], dtype=object).equals(pd.Series([1, np.nan], dtype=object))
Out[54]: True