We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f1288 commit 348edf3Copy full SHA for 348edf3
pandas/core/dtypes/missing.py
@@ -44,8 +44,6 @@
44
)
45
from pandas.core.dtypes.inference import is_list_like
46
47
-import pandas as pd
48
-
49
if TYPE_CHECKING:
50
from re import Pattern
51
@@ -504,12 +502,6 @@ def _array_equivalent_object(
504
502
mask = None
505
503
506
try:
507
- warnings.warn(
508
- "array_equivalent_object now uses strict=True for comparison. "
509
- "This may break code that relied on non-strict comparison.",
510
- pd.errors.FutureWarning,
511
- stacklevel=2,
512
- )
513
if mask is None:
514
return lib.array_equivalent_object(left, right, strict=True)
515
if not lib.array_equivalent_object(left[~mask], right[~mask], strict=True):
0 commit comments