Skip to content

Commit 29df552

Browse files
committed
add SA01 for pandas.api.types.is_int64_dtyp
1 parent 374f386 commit 29df552

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
302302
-i "pandas.api.types.is_float PR01,SA01" \
303303
-i "pandas.api.types.is_float_dtype SA01" \
304304
-i "pandas.api.types.is_hashable PR01,RT03,SA01" \
305-
-i "pandas.api.types.is_int64_dtype SA01" \
306305
-i "pandas.api.types.is_integer PR01,SA01" \
307306
-i "pandas.api.types.is_integer_dtype SA01" \
308307
-i "pandas.api.types.is_interval_dtype SA01" \

pandas/core/dtypes/common.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,13 @@ def is_int64_dtype(arr_or_dtype) -> bool:
829829
int)` will be True if the OS uses 64-bit integers and False if the OS
830830
uses 32-bit integers.
831831
832+
See Also
833+
--------
834+
pandas.api.types.is_string_dtype : Check whether the provided array or dtype is of the string dtype.
835+
pandas.api.types.is_float_dtype : Check whether the provided array or dtype is of a float dtype.
836+
pandas.api.types.is_integer_dtype : Check whether the provided array or dtype is of an integer dtype.
837+
pandas.api.types.is_numeric_dtype : Check whether the provided array or dtype is of a numeric dtype.
838+
832839
Examples
833840
--------
834841
>>> from pandas.api.types import is_int64_dtype

0 commit comments

Comments
 (0)