зеркало из https://github.com/microsoft/lisa.git
12 строки
373 B
Python
12 строки
373 B
Python
from typing import Any
|
|
|
|
from .assertpy import AssertionBuilder
|
|
|
|
__tracebackhide__: bool
|
|
|
|
class CollectionMixin:
|
|
def is_iterable(self) -> AssertionBuilder: ...
|
|
def is_not_iterable(self) -> AssertionBuilder: ...
|
|
def is_subset_of(self, *supersets: Any) -> AssertionBuilder: ...
|
|
def is_sorted(self, key: Any = ..., reverse: bool = ...) -> AssertionBuilder: ...
|