We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14de3fd commit 447b14fCopy full SHA for 447b14f
pandas/core/indexes/base.py
@@ -259,6 +259,10 @@ def _new_Index(cls, d):
259
# GH#23752 "labels" kwarg has been replaced with "codes"
260
d["codes"] = d.pop("labels")
261
262
+ # Since this was a valid MultiIndex at pickle-time, we don't need to
263
+ # check validty at un-pickle time.
264
+ d["verify_integrity"] = False
265
+
266
elif "dtype" not in d and "data" in d:
267
# Prevent Index.__new__ from conducting inference;
268
# "data" key not in RangeIndex
0 commit comments