-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
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
?