You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is is the intention that datetime.date would be supported as a valid input type for some methods? I have observed that it is only partially supported. Example, when using 0.8.0b1:
# Works
pandas.BDay().rollforward(datetime.date(2011, 11, 30))
# Doesn't work (returns None)
pandas.Day().rollforward(datetime.date(2011, 11, 30))
# Works
pandas.QuarterEnd().rollback(datetime.date(2011, 11, 30))
# Doesn't work (raises Exception, code expected datetime.datetime object)
pandas.YearEnd().rollback(datetime.date(2011, 11, 30))
The text was updated successfully, but these errors were encountered:
There is only partial support in these methods for datetime.date. I won't have the time to add sufficient testing that they all work with datetime.date; would need additional development help
Is is the intention that datetime.date would be supported as a valid input type for some methods? I have observed that it is only partially supported. Example, when using 0.8.0b1:
The text was updated successfully, but these errors were encountered: