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 b020930 commit 7b0df08Copy full SHA for 7b0df08
pandas/core/dtypes/missing.py
@@ -93,7 +93,7 @@ def isna(
93
def isna(obj: object) -> bool | npt.NDArray[np.bool_] | NDFrame: ...
94
95
96
-@set_module("pandas")
+# @set_module("pandas")
97
def isna(obj: object) -> bool | npt.NDArray[np.bool_] | NDFrame:
98
"""
99
Detect missing values for an array-like object.
pandas/tests/api/test_api.py
@@ -416,4 +416,4 @@ def test_set_module():
416
assert pd.Period.__module__ == "pandas"
417
assert pd.Timestamp.__module__ == "pandas"
418
assert pd.Timedelta.__module__ == "pandas"
419
- assert pd.isna.__module__ == "pandas"
+ # assert pd.isna.__module__ == "pandas"
0 commit comments