Skip to content

Commit 2e61f9c

Browse files
committed
PEP: pandas/core round 7 (window, reshape, series, format, minor categorical)
1 parent 69f794f commit 2e61f9c

File tree

5 files changed

+639
-582
lines changed

5 files changed

+639
-582
lines changed

pandas/core/categorical.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
from pandas.util.decorators import cache_readonly, deprecate_kwarg
1515

1616
from pandas.core.common import (
17-
ABCSeries, ABCIndexClass, ABCPeriodIndex, ABCCategoricalIndex, isnull,
18-
notnull, is_dtype_equal, is_categorical_dtype, is_integer_dtype,
19-
is_object_dtype, _possibly_infer_to_datetimelike, get_dtype_kinds,
20-
is_list_like, is_sequence, is_null_slice, is_bool, _ensure_platform_int,
21-
_ensure_object, _ensure_int64, _coerce_indexer_dtype, take_1d)
17+
ABCSeries, ABCIndexClass, ABCCategoricalIndex, isnull, notnull,
18+
is_dtype_equal, is_categorical_dtype, is_integer_dtype,
19+
_possibly_infer_to_datetimelike, get_dtype_kinds, is_list_like,
20+
is_sequence, is_null_slice, is_bool, _ensure_object, _ensure_int64,
21+
_coerce_indexer_dtype, take_1d)
2222
from pandas.core.dtypes import CategoricalDtype
2323
from pandas.util.terminal import get_terminal_size
2424
from pandas.core.config import get_option

0 commit comments

Comments
 (0)