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
If the value of an element of type DTM is before 1900, calling the method to_er7() raises an error
Create a DTM object with the year before 1900 and call to_er7() on it
d = DTM( datetime.date(1800, 12, 20) ) d.to_er7()
It raises
ValueError: year=1800 is before 1900; the datetime strftime() methods require year >= 1900
It should return the correct ER7 representation of the DTM object
The text was updated successfully, but these errors were encountered:
Merge pull request #1 from ryoung29/issue/78_2
27e6c50
Start support for v2.5.2/harmonized v2.5.1
No branches or pull requests
Description
If the value of an element of type DTM is before 1900, calling the method to_er7() raises an error
How to reproduce
Create a DTM object with the year before 1900 and call to_er7() on it
What happens
It raises
What should happen
It should return the correct ER7 representation of the DTM object
Notes
The text was updated successfully, but these errors were encountered: