Browse Source

Prioritise async iteration before sync iteration in utils.find/get

pull/8221/head
James Hilton-Balfe 3 years ago
committed by GitHub
parent
commit
3433e13848
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      discord/utils.py

20
discord/utils.py

@ -398,12 +398,12 @@ async def _afind(predicate: Callable[[T], Any], iterable: AsyncIterable[T], /) -
@overload
def find(predicate: Callable[[T], Any], iterable: Iterable[T], /) -> Optional[T]:
def find(predicate: Callable[[T], Any], iterable: AsyncIterable[T], /) -> Coro[Optional[T]]:
...
@overload
def find(predicate: Callable[[T], Any], iterable: AsyncIterable[T], /) -> Coro[Optional[T]]:
def find(predicate: Callable[[T], Any], iterable: Iterable[T], /) -> Optional[T]:
...
@ -437,9 +437,9 @@ def find(predicate: Callable[[T], Any], iterable: _Iter[T], /) -> Union[Optional
"""
return (
_find(predicate, iterable) # type: ignore
if hasattr(iterable, '__iter__') # isinstance(iterable, collections.abc.Iterable) is too slow
else _afind(predicate, iterable) # type: ignore
_afind(predicate, iterable) # type: ignore
if hasattr(iterable, '__aiter__') # isinstance(iterable, collections.abc.AsyncIterable) is too slow
else _find(predicate, iterable) # type: ignore
)
@ -484,12 +484,12 @@ async def _aget(iterable: AsyncIterable[T], /, **attrs: Any) -> Optional[T]:
@overload
def get(iterable: Iterable[T], /, **attrs: Any) -> Optional[T]:
def get(iterable: AsyncIterable[T], /, **attrs: Any) -> Coro[Optional[T]]:
...
@overload
def get(iterable: AsyncIterable[T], /, **attrs: Any) -> Coro[Optional[T]]:
def get(iterable: Iterable[T], /, **attrs: Any) -> Optional[T]:
...
@ -553,9 +553,9 @@ def get(iterable: _Iter[T], /, **attrs: Any) -> Union[Optional[T], Coro[Optional
"""
return (
_get(iterable, **attrs) # type: ignore
if hasattr(iterable, '__iter__') # isinstance(iterable, collections.abc.Iterable) is too slow
else _aget(iterable, **attrs) # type: ignore
_aget(iterable, **attrs) # type: ignore
if hasattr(iterable, '__aiter__') # isinstance(iterable, collections.abc.AsyncIterable) is too slow
else _get(iterable, **attrs) # type: ignore
)

Loading…
Cancel
Save