Skip to content

Commit 0469b74

Browse files
committed
avoid verify_integrity
1 parent 2e587e3 commit 0469b74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/packers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ def decode(obj):
604604

605605
elif typ == u'datetime_index':
606606
data = unconvert(obj[u'data'], np.int64, obj.get(u'compress'))
607-
d = dict(name=obj[u'name'], freq=obj[u'freq'], verify_integrity=False)
608-
result = globals()[obj[u'klass']](data, **d)
607+
d = dict(name=obj[u'name'], freq=obj[u'freq'])
608+
result = DatetimeIndex._simple_new(data, **d)
609609
tz = obj[u'tz']
610610

611611
# reverse tz conversion

0 commit comments

Comments
 (0)