summaryrefslogtreecommitdiffstats
path: root/Lib/datetime.py
diff options
context:
space:
mode:
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>2023-05-25 15:18:56 (GMT)
committerGitHub <noreply@github.com>2023-05-25 15:18:56 (GMT)
commit076b6204cbe481fdec39ce12a71aaaa6384478a0 (patch)
tree5f5ff86370cd094d6d8f2727687cee9144475e21 /Lib/datetime.py
parent569b2b8d612354062b8679d2d3f44f7ee03e66c2 (diff)
downloadcpython-076b6204cbe481fdec39ce12a71aaaa6384478a0.zip
cpython-076b6204cbe481fdec39ce12a71aaaa6384478a0.tar.gz
cpython-076b6204cbe481fdec39ce12a71aaaa6384478a0.tar.bz2
gh-84976: Add back UTC to datetime.__all__ (#104920)
gh-84796: Add back UTC to datetime.__all__ This was mistakenly dropped in #103637 Noticed when updating typeshed for Python 3.12
Diffstat (limited to 'Lib/datetime.py')
-rw-r--r--Lib/datetime.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/datetime.py b/Lib/datetime.py
index bad8beb..a33d2d7 100644
--- a/Lib/datetime.py
+++ b/Lib/datetime.py
@@ -6,4 +6,4 @@ except ImportError:
from _pydatetime import __doc__
__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
- "MINYEAR", "MAXYEAR")
+ "MINYEAR", "MAXYEAR", "UTC")