Skip to content
Closed
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
25 changes: 22 additions & 3 deletions pandas/core/index.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import warnings

from pandas.core.indexes.api import ( # noqa:F401
from pandas.core.indexes.api import (
CategoricalIndex,
DatetimeIndex,
Float64Index,
Expand All @@ -15,12 +15,31 @@
RangeIndex,
TimedeltaIndex,
UInt64Index,
_new_Index,
ensure_index,
ensure_index_from_sequences,
get_objs_combined_axis,
)
from pandas.core.indexes.multi import _sparsify # noqa:F401

__all__ = [
"CategoricalIndex",
"DatetimeIndex",
"Float64Index",
"Index",
"Int64Index",
"IntervalIndex",
"InvalidIndexError",
"MultiIndex",
"NaT",
"NumericIndex",
"PeriodIndex",
"RangeIndex",
"TimedeltaIndex",
"UInt64Index",
"ensure_index",
"ensure_index_from_sequences",
"get_objs_combined_axis",
]


# GH#30193
warnings.warn(
Expand Down