Skip to content

Commit 87804b4

Browse files
committed
fix back-compat for < 0.13
1 parent 40a6c4f commit 87804b4

8 files changed

+4
-1
lines changed

pandas/compat/pickle_compat.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ def load_reduce(self):
5858

5959
# 15477
6060
('pandas.core.base', 'FrozenNDArray'): ('pandas.indexes.frozen', 'FrozenNDArray'),
61-
('pandas.core.base', 'FrozenList'): ('pandas.indexes.frozen', 'FrozenList')
61+
('pandas.core.base', 'FrozenList'): ('pandas.indexes.frozen', 'FrozenList'),
62+
63+
# 10890
64+
('pandas.core.series', 'TimeSeries'): ('pandas.core.series', 'Series')
6265
}
6366

6467

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)