Skip to content

Commit 502b5fe

Browse files
committed
1 parent fdd2b4f commit 502b5fe

File tree

2,193 files changed

+595015
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,193 files changed

+595015
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import warnings
2+
3+
from pandas.core.indexes.api import ( # noqa:F401
4+
CategoricalIndex,
5+
DatetimeIndex,
6+
Float64Index,
7+
Index,
8+
Int64Index,
9+
IntervalIndex,
10+
MultiIndex,
11+
NaT,
12+
NumericIndex,
13+
PeriodIndex,
14+
RangeIndex,
15+
TimedeltaIndex,
16+
UInt64Index,
17+
_new_Index,
18+
ensure_index,
19+
ensure_index_from_sequences,
20+
get_objs_combined_axis,
21+
)
22+
from pandas.core.indexes.multi import sparsify_labels # noqa:F401
23+
24+
# GH#30193
25+
warnings.warn(
26+
"pandas.core.index is deprecated and will be removed in a future version. "
27+
"The public classes are available in the top-level namespace.",
28+
FutureWarning,
29+
stacklevel=2,
30+
)

0 commit comments

Comments
 (0)