Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.api.types.is_float PR01,SA01" \
-i "pandas.api.types.is_float_dtype SA01" \
-i "pandas.api.types.is_hashable PR01,RT03,SA01" \
-i "pandas.api.types.is_int64_dtype SA01" \
-i "pandas.api.types.is_integer PR01,SA01" \
-i "pandas.api.types.is_interval_dtype SA01" \
-i "pandas.api.types.is_iterator PR07,SA01" \
Expand Down
10 changes: 10 additions & 0 deletions pandas/core/dtypes/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,16 @@ def is_int64_dtype(arr_or_dtype) -> bool:
boolean
Whether or not the array or dtype is of the int64 dtype.

See Also
--------
api.types.is_float_dtype : Check whether the provided array or dtype is of a
float dtype.
api.types.is_bool_dtype : Check whether the provided array or dtype is of a
boolean dtype.
api.types.is_object_dtype : Check whether an array-like or dtype is of the
object dtype.
numpy.int64 : Numpy's 64-bit integer type.

Notes
-----
Depending on system architecture, the return value of `is_int64_dtype(
Expand Down
Loading