Skip to content

Commit 87804b4

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

File tree

8 files changed

+4
-1
lines changed

8 files changed

+4
-1
lines changed

pandas/compat/pickle_compat.py

Lines changed: 4 additions & 1 deletion
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

4.28 KB
Binary file not shown.
4.24 KB
Binary file not shown.
8.77 KB
Binary file not shown.
4.24 KB
Binary file not shown.
5.69 KB
Binary file not shown.
8.49 KB
Binary file not shown.
8.56 KB
Binary file not shown.

0 commit comments

Comments
 (0)