Add extra test for GenericAlias on TypeVar args

Signed-off-by: snowapril <sinjihng@gmail.com>
This commit is contained in:
snowapril
2021-10-26 10:14:42 +09:00
parent bda42ac73c
commit 795bfeb75d

View File

@@ -0,0 +1,4 @@
from typing import TypeVar
Y = TypeVar('Y')
assert dict[str,Y][int] == dict[str, int]