Skip to content

Commit 49da0e4

Browse files
committed
Fix pickling
1 parent f464384 commit 49da0e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/indexes/api.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .base import (Index, # noqa
1+
from .base import (Index, _new_Index, # noqa
22
_ensure_index, _get_na_value,
33
InvalidIndexError)
44
from .category import CategoricalIndex # noqa
@@ -13,6 +13,7 @@
1313
__all__ = ['Index', 'MultiIndex', 'NumericIndex', 'Float64Index', 'Int64Index',
1414
'CategoricalIndex', 'RangeIndex',
1515
'InvalidIndexError',
16+
'_new_Index',
1617
'_ensure_index', '_get_na_value', '_get_combined_index',
1718
'_get_distinct_indexes', '_union_indexes',
1819
'_get_consensus_names',

0 commit comments

Comments
 (0)