#2193 causes a crash when calling super in function which takes a generic argument (even if the generic argument is unused). Here's the minimum reproducer I've found:
fromtypingimportTypeVarT=TypeVar('T', int, str)
classA:
passclassB(A):
def__init__(self, arg):
# type: (T) -> Nonesuper(B, self).__init__()@JukkaL@elazarg could you take a look?
#2193 causes a crash when calling
superin function which takes a generic argument (even if the generic argument is unused). Here's the minimum reproducer I've found:@JukkaL@elazarg could you take a look?