-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
fix: remove milliseconds from isoformat #1213
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trouble is, this only works when the user supplies a datetime
with no timezone. If the user supplies a timezone, the appended Z
would be incorrect.
We also probably don't want to add in Z
when there is no timezone, because the user may not have created a UTC time, but a local one.
Unfortunately I don't think there's a way to indicate using the standard library types that a timezone is required, so the only way to really solve this in a way that's obvious to users might be to create a new custom date class... but also it would be really annoying to not allow standard datetime
as input. Only other option I can think of is throwing an exception, which I generally prefer not to.
Yeah that all makes sense. I don't have a good grasp of the project enough to understand the best way to handle it, but a custom class feels like the right approach. Maybe coupled with a warning log when a datetime is encountered. Could you point me to the right place to add a custom class and how to use it when generating? |
If the provided datetime object does not contain timezone data, it can be logically assumed that it is in the computer's local timezone. This would make |
I'm not sure if this assumption works—I think in many cases the assumption is UTC if no TZ is defined. |
That's certainly the challenge 😓. There's a lot of code in the wild using
The problem with this approach is that it's going to add a ton of boilerplate to clients that are already using We could also start throwing an exception if a datetime doesn't have a timezone rather than encoding the need for a timezone in the type system. That's probably more Pythonic (even if I personally hate it 😆). One other note—looks like RFC-3339 does allow for fractional seconds (milliseconds) so we wouldn't have to remove those, just require a timezone. |
Fixes #841