Add math.tau to typeshed (#801)

As per https://www.python.org/dev/peps/pep-0628/
This commit is contained in:
Alex
2016-12-29 13:17:40 -05:00
committed by Guido van Rossum
parent bbc7594ec7
commit 6a15963e7d

View File

@@ -10,6 +10,8 @@ pi = ... # type: float
if sys.version_info >= (3, 5):
inf = ... # type: float
nan = ... # type: float
if sys.version_info >= (3, 6):
tau = ... # type: float
def acos(x: float) -> float: ...
def acosh(x: float) -> float: ...