@@ -144,14 +144,14 @@ def ensure_python_int(value: int | np.integer) -> int:
144144
145145
146146def classes (* klasses ) -> Callable :
147- """evaluate if the tipo is a subclass of the klasses"""
147+ """Evaluate if the tipo is a subclass of the klasses. """
148148 return lambda tipo : issubclass (tipo , klasses )
149149
150150
151151def classes_and_not_datetimelike (* klasses ) -> Callable :
152152 """
153- evaluate if the tipo is a subclass of the klasses
154- and not a datetimelike
153+ Evaluate if the tipo is a subclass of the klasses
154+ and not a datetimelike.
155155 """
156156 return lambda tipo : (
157157 issubclass (tipo , klasses )
@@ -679,7 +679,7 @@ def is_integer_dtype(arr_or_dtype) -> bool:
679679 """
680680 Check whether the provided array or dtype is of an integer dtype.
681681
682- Unlike in `in_any_int_dtype `, timedelta64 instances will return False.
682+ Unlike in `is_any_int_dtype `, timedelta64 instances will return False.
683683
684684 The nullable Integer dtypes (e.g. pandas.Int64Dtype) are also considered
685685 as integer by this function.
@@ -731,7 +731,7 @@ def is_signed_integer_dtype(arr_or_dtype) -> bool:
731731 """
732732 Check whether the provided array or dtype is of a signed integer dtype.
733733
734- Unlike in `in_any_int_dtype `, timedelta64 instances will return False.
734+ Unlike in `is_any_int_dtype `, timedelta64 instances will return False.
735735
736736 The nullable Integer dtypes (e.g. pandas.Int64Dtype) are also considered
737737 as integer by this function.
@@ -1525,7 +1525,7 @@ def is_complex_dtype(arr_or_dtype) -> bool:
15251525
15261526def _is_dtype (arr_or_dtype , condition ) -> bool :
15271527 """
1528- Return a boolean if the condition is satisfied for the arr_or_dtype.
1528+ Return true if the condition is satisfied for the arr_or_dtype.
15291529
15301530 Parameters
15311531 ----------
@@ -1584,7 +1584,7 @@ def get_dtype(arr_or_dtype) -> DtypeObj:
15841584
15851585def _is_dtype_type (arr_or_dtype , condition ) -> bool :
15861586 """
1587- Return a boolean if the condition is satisfied for the arr_or_dtype.
1587+ Return true if the condition is satisfied for the arr_or_dtype.
15881588
15891589 Parameters
15901590 ----------
0 commit comments