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
This behavior is present both before and after #19608/#19540.
per = pd.Period('0001-01-01', freq='B') >>> per + 1 Period('0001-01-02', 'B') >>> per - 1 Period('0001-01-05', 'B') >>> per - 4 Period('0001-01-02', 'B') >>> per - 5 Period('0000-12-25', 'B')
The text was updated successfully, but these errors were encountered:
How odd! PR to patch this is welcome!
Sorry, something went wrong.
Making a PR for this now, parking a related issue that is going in an xfail for the time being:
per = Period('0001-01-01', freq='B') >>> per.to_timestamp() Timestamp('1754-08-30 22:43:41.128654848')
Successfully merging a pull request may close this issue.
This behavior is present both before and after #19608/#19540.
The text was updated successfully, but these errors were encountered: