add more minor 3.7 new features (#2000)

part of #1965
This commit is contained in:
Jelle Zijlstra
2018-03-28 21:28:27 -07:00
committed by GitHub
parent 6a1d25b73e
commit 43e6c3c435
5 changed files with 29 additions and 5 deletions

View File

@@ -61,6 +61,8 @@ if sys.version_info >= (3, 3):
def modf(x: float) -> Tuple[float, float]: ...
def pow(x: float, y: float) -> float: ...
def radians(x: float) -> float: ...
if sys.version_info >= (3, 7):
def remainder(x: float, y: float) -> float: ...
def sin(x: float) -> float: ...
def sinh(x: float) -> float: ...
def sqrt(x: float) -> float: ...