diff options
Diffstat (limited to 'Lib/types.py')
| -rw-r--r-- | Lib/types.py | 3 |
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) |
