Skip to content

Commit 1f1d96b

Browse files
committed
doc-string
1 parent 70b7b31 commit 1f1d96b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pandas/core/dtypes/common.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,8 @@ def is_any_int_dtype(arr_or_dtype):
825825
826826
.. versionchanged:: 0.24.0
827827
828-
Nullable Integer support
828+
The nullable Integer dtypes (e.g. pandas.Int64Dtype) are also considered
829+
as integer by this function.
829830
830831
Parameters
831832
----------
@@ -872,7 +873,8 @@ def is_integer_dtype(arr_or_dtype):
872873
873874
.. versionchanged:: 0.24.0
874875
875-
Nullable Integer support
876+
The nullable Integer dtypes (e.g. pandas.Int64Dtype) are also considered
877+
as integer by this function.
876878
877879
Parameters
878880
----------
@@ -926,7 +928,8 @@ def is_signed_integer_dtype(arr_or_dtype):
926928
927929
.. versionchanged:: 0.24.0
928930
929-
Nullable Integer support
931+
The nullable Integer dtypes (e.g. pandas.Int64Dtype) are also considered
932+
as integer by this function.
930933
931934
Parameters
932935
----------
@@ -980,7 +983,8 @@ def is_unsigned_integer_dtype(arr_or_dtype):
980983
981984
.. versionchanged:: 0.24.0
982985
983-
Nullable Integer support
986+
The nullable Integer dtypes (e.g. pandas.UInt64Dtype) are also
987+
considered as integer by this function.
984988
985989
Parameters
986990
----------

0 commit comments

Comments
 (0)