From c0e6bddb3bb6c858111f8c4a2f9c1b33637e2017 Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Mon, 9 May 2022 13:48:32 -0400 Subject: [PATCH] Add what's new entry for datetime.UTC alias --- Doc/whatsnew/3.11.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index fd7082e9fd74d2..40e68e64e04296 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -434,6 +434,8 @@ asyncio datetime -------- +* Add :attr:`datetime.UTC`, a convenience alias for + :attr:`datetime.timezone.utc`. (Contributed by Kabir Kwatra in :gh:`91973`.) * :meth:`datetime.date.fromisoformat`, :meth:`datetime.time.fromisoformat` and :meth:`datetime.datetime.fromisoformat` can now be used to parse most ISO 8601 formats (barring only those that support fractional hours and minutes).