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
Are BC dates supported?
I try to
ciso8601.parse_datetime('-0399-01-01') ciso8601.parse_datetime('0399-01-01 BC')
but those give me errors
The text was updated successfully, but these errors were encountered:
Python's Date times do not support BCE dates by default.
https://docs.python.org/3/library/datetime.html
So probably not.
Sorry, something went wrong.
We could give better error messages for the first case 👍 good idea.
FWIW, the latter is not valid ISO 8601, so there won't be a better error message for that.
No branches or pull requests
Are BC dates supported?
I try to
but those give me errors
The text was updated successfully, but these errors were encountered: