move _heapq into 2and3/

This commit is contained in:
Matthias Kramm
2015-09-28 14:51:21 -07:00
parent 06890ecf29
commit 511218ea28
2 changed files with 0 additions and 27 deletions

View File

@@ -1,27 +0,0 @@
"""Stub file for the '_heapq' module."""
# This is an autogenerated file. It serves as a starting point
# for a more precise manual annotation of this module.
# Feel free to edit the source below, but remove this header when you do.
from typing import Any, List, Tuple, Dict, Generic
def heapify(*args, **kwargs) -> None:
raise TypeError()
def heappop(*args, **kwargs) -> Any:
raise IndexError()
raise TypeError()
def heappush(*args, **kwargs) -> None:
raise TypeError()
def heappushpop(*args, **kwargs) -> Any:
raise TypeError()
def heapreplace(*args, **kwargs) -> Any:
raise IndexError()
raise TypeError()
def nlargest(a: int, b) -> List[object]: ...
def nsmallest(a: int, b) -> List[object]: ...