-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
Description
https://github.com/pandas-dev/pandas/blob/master/pandas/core/ops.py#L490
elif (isinstance(ovalues, datetime.datetime) and
hasattr(ovalues, 'tzinfo')):
Is that hasattr(ovalues, 'tzinfo')
supposed to be ovalues.tzinfo is not None
?