mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Eliminated the use of "bare" TypeVars (i.e. a TypeVar that appears only once) within generic methods. While not considered an error in PEP 484, these are a common source of bugs in code, and some type checkers (including pytype and pyright) flag them as errors. Co-authored-by: Eric Traut <erictr@microsoft.com>
15 lines
613 B
Python
15 lines
613 B
Python
import sys
|
|
from typing import Any, Callable, Iterable, List, Optional, TypeVar
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
def heapify(__heap: List[Any]) -> None: ...
|
|
def heappop(__heap: List[_T]) -> _T: ...
|
|
def heappush(__heap: List[_T], __item: _T) -> None: ...
|
|
def heappushpop(__heap: List[_T], __item: _T) -> _T: ...
|
|
def heapreplace(__heap: List[_T], __item: _T) -> _T: ...
|
|
|
|
if sys.version_info < (3,):
|
|
def nlargest(__n: int, __iterable: Iterable[_T], __key: Optional[Callable[[_T], Any]] = ...) -> List[_T]: ...
|
|
def nsmallest(__n: int, __iterable: Iterable[_T], __key: Optional[Callable[[_T], Any]] = ...) -> List[_T]: ...
|