Skip to content

Commit 6a15963

Browse files
afriedergvanrossum
authored andcommitted
Add math.tau to typeshed (#801)
As per https://www.python.org/dev/peps/pep-0628/
1 parent bbc7594 commit 6a15963

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/2and3/math.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ pi = ... # type: float
1010
if sys.version_info >= (3, 5):
1111
inf = ... # type: float
1212
nan = ... # type: float
13+
if sys.version_info >= (3, 6):
14+
tau = ... # type: float
1315

1416
def acos(x: float) -> float: ...
1517
def acosh(x: float) -> float: ...

0 commit comments

Comments
 (0)