CS2613/utils/python-venv/Lib/site-packages/attr/_cmp.pyi
Isaac Shoebottom a50f49d2c8 Add python venv
2022-10-31 10:10:52 -03:00

14 lines
357 B
Python

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,
) -> Type: ...