Skip to content

Commit 928842f

Browse files
committed
Fix missing module
1 parent 088dff8 commit 928842f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pandas/core/dtypes/missing.py

-5
Original file line numberDiff line numberDiff line change
@@ -424,11 +424,6 @@ def array_equivalent(
424424
# Slow path when we allow comparing different dtypes.
425425
# Object arrays can contain None, NaN and NaT.
426426
# string dtypes must be come to this path for NumPy 1.7.1 compat
427-
try:
428-
return np.array_equal(left, right)
429-
except:
430-
pass
431-
432427
if is_string_dtype(left.dtype) or is_string_dtype(right.dtype):
433428
return _array_equivalent_object(left, right, strict_nan)
434429

0 commit comments

Comments
 (0)