bazarr/libs/attr/_cmp.pyi

14 lines
399 B
Python
Raw Normal View History

2022-09-22 10:33:33 +00:00
from typing import Any, Callable, Optional, Type
_CompareWithType = Callable[[Any, Any], bool]
def cmp_using(
eq: Optional[_CompareWithType] = ...,
lt: Optional[_CompareWithType] = ...,
le: Optional[_CompareWithType] = ...,
gt: Optional[_CompareWithType] = ...,
ge: Optional[_CompareWithType] = ...,
require_same_type: bool = ...,
class_name: str = ...,
2022-09-22 10:33:33 +00:00
) -> Type: ...