Skip to content

Commit d207d52

Browse files
authored
DOC: Add SA01 for pandas.api.types.is_unsigned_integer_dtype (#59250)
adding see also
1 parent ed09b58 commit d207d52

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
313313
-i "pandas.api.types.is_sparse SA01" \
314314
-i "pandas.api.types.is_string_dtype SA01" \
315315
-i "pandas.api.types.is_timedelta64_ns_dtype SA01" \
316-
-i "pandas.api.types.is_unsigned_integer_dtype SA01" \
317316
-i "pandas.api.types.pandas_dtype PR07,RT03,SA01" \
318317
-i "pandas.api.types.union_categoricals RT03,SA01" \
319318
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \

pandas/core/dtypes/common.py

+9
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,15 @@ def is_unsigned_integer_dtype(arr_or_dtype) -> bool:
780780
boolean
781781
Whether or not the array or dtype is of an unsigned integer dtype.
782782
783+
See Also
784+
--------
785+
api.types.is_signed_integer_dtype : Check whether the provided array
786+
or dtype is of an signed integer dtype.
787+
api.types.is_integer_dtype : Check whether the provided array or dtype
788+
is of an integer dtype.
789+
api.types.is_numeric_dtype : Check whether the provided array or dtype
790+
is of a numeric dtype.
791+
783792
Examples
784793
--------
785794
>>> from pandas.api.types import is_unsigned_integer_dtype

0 commit comments

Comments
 (0)