mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
bpo-46644: Fix test_typing test broken by GH-31151 due to a merge race (GH-31833)
This commit is contained in:
parent
870b22b9c4
commit
75174371e6
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ class TypeVarTests(BaseTestCase):
|
||||||
T = TypeVar('T')
|
T = TypeVar('T')
|
||||||
P = ParamSpec("P")
|
P = ParamSpec("P")
|
||||||
bad_args = (
|
bad_args = (
|
||||||
42, ..., [int], (), (int, str), Union,
|
(), (int, str), Union,
|
||||||
Generic, Generic[T], Protocol, Protocol[T],
|
Generic, Generic[T], Protocol, Protocol[T],
|
||||||
Final, Final[int], ClassVar, ClassVar[int],
|
Final, Final[int], ClassVar, ClassVar[int],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue