diff --git a/spec/API_specification/dataframe_api/dataframe_object.py b/spec/API_specification/dataframe_api/dataframe_object.py index 45269423..20f4cbf2 100644 --- a/spec/API_specification/dataframe_api/dataframe_object.py +++ b/spec/API_specification/dataframe_api/dataframe_object.py @@ -578,12 +578,14 @@ def isnull(self) -> DataFrame: Notes ----- Does *not* include NaN-like entries. + May optionally include 'NaT' values (if present in an implementation), + but note that the Standard makes no guarantees about them. """ ... def isnan(self) -> DataFrame: """ - Check for nan-like entries. + Check for nan entries. Returns ------- @@ -595,7 +597,8 @@ def isnan(self) -> DataFrame: Notes ----- - Includes anything with NaN-like semantics, e.g. np.datetime64("NaT"). + This only checks for 'NaN'. Does *not* include 'missing' or 'null' entries. + In particular, does not check for `np.timedelta64('NaT')`. """ ...