admin管理员组文章数量:1344301
I would like to write a function accepting two arguments that are supposed to be compatible with the same base class:
def example_function(desired_type: type[DesiredType], base_object: RelatedType) -> DesiredType:
...
where RelatedType
and DesiredType
should be type variables bound to the same parent class (which is known only when the function is called with concrete arguments).
A possible example of such function might be a factory class-method able to create an instance of the same class based on some attributes of another object supposed partially "compatible" (in a certain context):
class Example:
@classmethod
def (cls: type[SelfType], existing_object: OtherType) -> SelfType:
...
SelfType = TypeVar("DerivedType", bound=Example)
OtherType = TypeVar("DerivedType", bound=Example)
but OtherType
appears only once in the generic function signature so it is marked as reportInvalidTypeVarUse
error. In this example, an easy workaround would be substituting OtherType
with Example
itself, which naturally complies with its subclasses.
I understand inheritance relationship cannot be enforced between different type variables, i.e. something like:
BaseType = TypeVar("BaseType")
DerivedType = TypeVar("DerivedType", bound=BaseType)
because a generic type cannot be an upper bound.
What is the correct way to provide meaningful type hints that convey the intended relationship?
本文标签:
版权声明:本文标题:python - Is there a way to annotate a function with two generic arguments indicating that both type variables are bound to the s 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770766a2536080.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论