Skip to content

Commit dc24410

Browse files
DOC: fix SA01 for pandas.api.types.is_int64_dtype (#59862)
1 parent 2cdb97e commit dc24410

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
117117
-i "pandas.api.types.is_float PR01,SA01" \
118118
-i "pandas.api.types.is_float_dtype SA01" \
119119
-i "pandas.api.types.is_hashable PR01,RT03,SA01" \
120-
-i "pandas.api.types.is_int64_dtype SA01" \
121120
-i "pandas.api.types.is_integer PR01,SA01" \
122121
-i "pandas.api.types.is_interval_dtype SA01" \
123122
-i "pandas.api.types.is_iterator PR07,SA01" \

pandas/core/dtypes/common.py

+10
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,16 @@ def is_int64_dtype(arr_or_dtype) -> bool:
886886
boolean
887887
Whether or not the array or dtype is of the int64 dtype.
888888
889+
See Also
890+
--------
891+
api.types.is_float_dtype : Check whether the provided array or dtype is of a
892+
float dtype.
893+
api.types.is_bool_dtype : Check whether the provided array or dtype is of a
894+
boolean dtype.
895+
api.types.is_object_dtype : Check whether an array-like or dtype is of the
896+
object dtype.
897+
numpy.int64 : Numpy's 64-bit integer type.
898+
889899
Notes
890900
-----
891901
Depending on system architecture, the return value of `is_int64_dtype(

0 commit comments

Comments
 (0)