Skip to content

Commit 37b760c

Browse files
authored
Update test_typing.py
1 parent 596b6f5 commit 37b760c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_typing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
from typing import TypeAlias
4242
from typing import ParamSpec, Concatenate, ParamSpecArgs, ParamSpecKwargs
4343
from typing import TypeGuard, TypeIs, NoDefault
44+
from typing import _eval_type
4445
import abc
4546
import textwrap
4647
import typing
@@ -10761,7 +10762,7 @@ def test_eq(self):
1076110762
class MyType:
1076210763
pass
1076310764

10764-
class test_generic_alias_handling(BaseTestCase):
10765+
class TestGenericAliasHandling(BaseTestCase):
1076510766
def test_forward_ref(self):
1076610767
fwd_ref = ForwardRef('MyType')
1076710768
result = _eval_type(fwd_ref, globals(), locals())

0 commit comments

Comments
 (0)