categorical.py 272 B

123456789
  1. import warnings
  2. from pandas.core.dtypes.dtypes import CategoricalDtype # noqa
  3. from pandas.core.arrays import Categorical # noqa
  4. # TODO: Remove after 0.23.x
  5. warnings.warn("'pandas.core' is private. Use 'pandas.Categorical'",
  6. FutureWarning, stacklevel=2)