We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c9d96 commit 76e1a7eCopy full SHA for 76e1a7e
pandas/compat/pickle_compat.py
@@ -113,6 +113,12 @@ def load_reduce(self):
113
# 19269, arrays moving
114
('pandas.core.categorical', 'Categorical'):
115
('pandas.core.arrays', 'Categorical'),
116
+
117
+ # 19939, add timedeltaindex, float64index compat from 15998 move
118
+ ('pandas.tseries.tdi', 'TimedeltaIndex'):
119
+ ('pandas.core.indexes.timedeltas', 'TimedeltaIndex'),
120
+ ('pandas.indexes.numeric', 'Float64Index'):
121
+ ('pandas.core.indexes.numeric', 'Float64Index'),
122
}
123
124
0 commit comments