r
Size: a a a
r
a
r
t

т
t
class MyClass:
def get_me(self) -> MyClass:
return selfт
t
from typing import TypeVar, Generic
MyClassType = TypeVar('MyClass')
class MyClass(Generic[MyClassType]):
def get_me(self) -> MyClassType:
return selfт
d

t
from typing import TypeVar, Generic
MyClassType = TypeVar('MyClass')
class MyClass(Generic[MyClassType]):
def get_me(self) -> MyClassType:
return selfT

from __future__ import annotationsT
t
from __future__ import annotationsT
T
T
t