We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e587e3 commit 0469b74Copy full SHA for 0469b74
pandas/io/packers.py
@@ -604,8 +604,8 @@ def decode(obj):
604
605
elif typ == u'datetime_index':
606
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)
+ d = dict(name=obj[u'name'], freq=obj[u'freq'])
+ result = DatetimeIndex._simple_new(data, **d)
609
tz = obj[u'tz']
610
611
# reverse tz conversion
0 commit comments