Use variable annotations everywhere (#2909)

This commit is contained in:
Michael Lee
2019-04-13 01:40:52 -07:00
committed by Sebastian Rittau
parent b3c76aab49
commit efb67946f8
458 changed files with 9135 additions and 9135 deletions

View File

@@ -5,13 +5,13 @@ from typing import Tuple, Iterable, SupportsFloat, SupportsInt
import sys
e = ... # type: float
pi = ... # type: float
e: float
pi: float
if sys.version_info >= (3, 5):
inf = ... # type: float
nan = ... # type: float
inf: float
nan: float
if sys.version_info >= (3, 6):
tau = ... # type: float
tau: float
def acos(x: SupportsFloat) -> float: ...
def acosh(x: SupportsFloat) -> float: ...