File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -592,8 +592,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
592
592
pandas.api.types.is_datetime64_dtype \
593
593
pandas.api.types.is_datetime64_ns_dtype \
594
594
pandas.api.types.is_datetime64tz_dtype \
595
- pandas.api.types.is_float_dtype \
596
- pandas.api.types.is_int64_dtype \
597
595
pandas.api.types.is_integer_dtype \
598
596
pandas.api.types.is_interval_dtype \
599
597
pandas.api.types.is_numeric_dtype \
Original file line number Diff line number Diff line change @@ -832,6 +832,7 @@ def is_int64_dtype(arr_or_dtype) -> bool:
832
832
833
833
Examples
834
834
--------
835
+ >>> from pandas.api.types import is_int64_dtype
835
836
>>> is_int64_dtype(str)
836
837
False
837
838
>>> is_int64_dtype(np.int32)
@@ -1216,6 +1217,7 @@ def is_float_dtype(arr_or_dtype) -> bool:
1216
1217
1217
1218
Examples
1218
1219
--------
1220
+ >>> from pandas.api.types import is_float_dtype
1219
1221
>>> is_float_dtype(str)
1220
1222
False
1221
1223
>>> is_float_dtype(int)
You can’t perform that action at this time.
0 commit comments