-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
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
Enable ZonedDateTime to parse its own string representation #470
Comments
I agree with this sentiment. TimeZones.jl uses Dates.jl for the underlying parsing engine and this will need to be addressed there to handle optional milliseconds with additional info after. |
Hello, I am glad that you agree that it would be desirable for |
When a
ZonedDateTime
with a zero millisecond component is represented as a string, then the millisecond component is not shown in theString
leading toparse
errors if theString
is parsed, e.g.:As far as I can tell,
DateTime
from theDates
standard library is always able to parse its own output and in my opinion, it would be nice ifZonedDateTime
could do this as well.The text was updated successfully, but these errors were encountered: