Skip to content

PEP: pandas/core round 7 (window, reshape, series, format) #12099

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pandas/core/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
from pandas.util.decorators import cache_readonly, deprecate_kwarg

from pandas.core.common import (
ABCSeries, ABCIndexClass, ABCPeriodIndex, ABCCategoricalIndex, isnull,
notnull, is_dtype_equal, is_categorical_dtype, is_integer_dtype,
is_object_dtype, _possibly_infer_to_datetimelike, get_dtype_kinds,
is_list_like, is_sequence, is_null_slice, is_bool, _ensure_platform_int,
_ensure_object, _ensure_int64, _coerce_indexer_dtype, take_1d)
ABCSeries, ABCIndexClass, ABCCategoricalIndex, isnull, notnull,
is_dtype_equal, is_categorical_dtype, is_integer_dtype,
_possibly_infer_to_datetimelike, get_dtype_kinds, is_list_like,
is_sequence, is_null_slice, is_bool, _ensure_object, _ensure_int64,
_coerce_indexer_dtype, take_1d)
from pandas.core.dtypes import CategoricalDtype
from pandas.util.terminal import get_terminal_size
from pandas.core.config import get_option
Expand Down
Loading