diff options
author | Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> | 2022-01-25 15:31:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-25 15:31:12 (GMT) |
commit | 9a7d01046723a8a0a10f9a26702c5e39e73d4414 (patch) | |
tree | af47d11c9c30f0c46ac3734be8869d080a591599 /Lib/test | |
parent | 41e0aead3defa6d0486514e313b6975fbf375998 (diff) | |
download | cpython-9a7d01046723a8a0a10f9a26702c5e39e73d4414.zip cpython-9a7d01046723a8a0a10f9a26702c5e39e73d4414.tar.gz cpython-9a7d01046723a8a0a10f9a26702c5e39e73d4414.tar.bz2 |
[3.10] bpo-46445, bpo-46519: Re-import typing.NewType (GH-30886)
Partially reverts 65b88d5e01c845c0cfa3ff61bc8b2faec8f67a57.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_typing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index a840ffe..9b552c4 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -19,6 +19,7 @@ from typing import get_origin, get_args from typing import is_typeddict from typing import no_type_check, no_type_check_decorator from typing import Type +from typing import NewType from typing import NamedTuple, TypedDict from typing import IO, TextIO, BinaryIO from typing import Pattern, Match |