mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 23:52:27 +07:00
GitOrigin-RevId: 1292ba4fb7f39a2980b30c80d16811060f11509c
14 lines
368 B
Python
14 lines
368 B
Python
from typing import Any, Callable
|
|
|
|
_CompareWithType = Callable[[Any, Any], bool]
|
|
|
|
def cmp_using(
|
|
eq: _CompareWithType | None = ...,
|
|
lt: _CompareWithType | None = ...,
|
|
le: _CompareWithType | None = ...,
|
|
gt: _CompareWithType | None = ...,
|
|
ge: _CompareWithType | None = ...,
|
|
require_same_type: bool = ...,
|
|
class_name: str = ...,
|
|
) -> type: ...
|