blob: e6ff38abc7c54da45ca603b46f842d9105cd0b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from typing import Generic, TypeVar
T = TypeVar('T')
# Test that typing.Generic's __new__ method does not mask our class'
# __init__ signature.
class A(Generic[T]):
"""docstring for A"""
def __init__(self, a, b=None):
pass
|