summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/types.py b/Lib/types.py
index c665e6f861..ce1c28d562 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -297,9 +297,8 @@ def coroutine(func):
return wrapped
-
GenericAlias = type(list[int])
-Union = type(int | str)
+UnionType = type(int | str)
EllipsisType = type(Ellipsis)
NoneType = type(None)