Skip to content

Commit 20be993

Browse files
author
Chris Bertinato
committed
WIP2
1 parent 9267775 commit 20be993

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/io/parsers.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3156,9 +3156,9 @@ def converter(*date_cols):
31563156

31573157
if isinstance(dti, DatetimeIndex):
31583158
dti = dti.to_pydatetime()
3159-
elif is_datetime64_dtype(dti):
3160-
dti = np.array([Timestamp(ts).to_pydatetime()
3161-
for ts in dti])
3159+
# elif is_datetime64_dtype(dti):
3160+
# dti = np.array([Timestamp(ts).to_pydatetime()
3161+
# for ts in dti])
31623162
else:
31633163
dti = dti.to_numpy()
31643164

0 commit comments

Comments
 (0)