Add datetime.UTC
alias for datetime.timezone.utc
· Issue #91928 · python/cpython (original) (raw)
Feature or enhancement
Right now, the UTC singleton is only available as a class-level attribute on datetime.timezone
, but I think a lot of people would probably like to be able to do this:
Since datetime.timezone
is a class, not a module, right now it is necessary for each person to define their own UTC
alias (if they want such a thing) in two lines:
from datetime import timezone UTC = timezone.utc
This isn't a huge deal, but I think it would be pretty unambiguous what it refers to and might be a nice quality of life improvement.
CC: @abalkin