File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
342
342
-i " pandas.api.types.is_signed_integer_dtype SA01" \
343
343
-i " pandas.api.types.is_sparse SA01" \
344
344
-i " pandas.api.types.is_string_dtype SA01" \
345
- -i " pandas.api.types.is_timedelta64_dtype SA01" \
346
345
-i " pandas.api.types.is_timedelta64_ns_dtype SA01" \
347
346
-i " pandas.api.types.is_unsigned_integer_dtype SA01" \
348
347
-i " pandas.api.types.pandas_dtype PR07,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -362,6 +362,13 @@ def is_timedelta64_dtype(arr_or_dtype) -> bool:
362
362
boolean
363
363
Whether or not the array-like or dtype is of the timedelta64 dtype.
364
364
365
+ See Also
366
+ --------
367
+ api.types.is_timedelta64_ns_dtype : Check whether the provided array or dtype is
368
+ of the timedelta64[ns] dtype.
369
+ api.types.is_period_dtype : Check whether an array-like or dtype is of the
370
+ Period dtype.
371
+
365
372
Examples
366
373
--------
367
374
>>> from pandas.core.dtypes.common import is_timedelta64_dtype
You can’t perform that action at this time.
0 commit comments