We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by user
In [35]: rng1 = DateRange('12/5/2011', '12/5/2011') In [36]: rng2 = DateRange('12/2/2011', '12/5/2011') In [37]: rng1.union(rng2) Out[37]: <class 'pandas.core.daterange.DateRange'> offset: <1 BusinessDay>, tzinfo: None [2011-12-02 00:00:00, ..., 2011-12-05 00:00:00] length: 2 In [38]: rng2.offset = datetools.BDay() In [39]: rng1.union(rng2) Out[39]: Index([2011-12-02 00:00:00, 2011-12-05 00:00:00], dtype=object)
The text was updated successfully, but these errors were encountered:
BUG: DateRange union bug caused by DateOffset __ne__ not being implem…
9ada28a
…ented, GH #456
No branches or pull requests
Reported by user
The text was updated successfully, but these errors were encountered: