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
Correct:
>>> TimePoint(year=2023, month_of_year=7, day_of_month=31) + Duration(months=1) 2023-08-31
Also correct (last day of month):
>>> TimePoint(year=2023, month_of_year=8, day_of_month=31) + Duration(months=1) 2023-09-30
Incorrect:
>>> TimePoint(year=2023, month_of_year=8, day_of_month=31) + Duration(months=2) 2023-10-30
(should be 2023-10-31)
2023-10-31
This will probably need similar re-work as done in #234
See
isodatetime/metomi/isodatetime/data.py
Lines 1684 to 1686 in 41bc38f
Lines 1835 to 1837 in 41bc38f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Correct:
Also correct (last day of month):
Incorrect:
(should be
2023-10-31
)This will probably need similar re-work as done in #234
See
isodatetime/metomi/isodatetime/data.py
Lines 1684 to 1686 in 41bc38f
isodatetime/metomi/isodatetime/data.py
Lines 1835 to 1837 in 41bc38f
The text was updated successfully, but these errors were encountered: