Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions stdlib/heapq.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ def merge(
def nlargest(n: int, iterable: Iterable[_S], key: Callable[[_S], SupportsRichComparison] | None = None) -> list[_S]: ...
def nsmallest(n: int, iterable: Iterable[_S], key: Callable[[_S], SupportsRichComparison] | None = None) -> list[_S]: ...
def _heapify_max(heap: list[Any], /) -> None: ... # undocumented
def _heappop_max(heap: list[Any], /) -> Any: ... # undocumented
def _heapreplace_max(heap: list[Any], item: Any, /) -> Any: ... # undocumented