Skip to content

Commit

Permalink
DOC: fix SA01 for pandas.api.types.is_int64_dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhinsharma121 committed Sep 22, 2024
1 parent 2419343 commit 1a461f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
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

0 comments on commit 1a461f4

Please sign in to comment.