diff --git a/stdlib/2.7/__builtin__.pyi b/stdlib/2.7/__builtin__.pyi index 507cde958..c23c91379 100644 --- a/stdlib/2.7/__builtin__.pyi +++ b/stdlib/2.7/__builtin__.pyi @@ -750,7 +750,7 @@ def reversed(object: Reversible[_T]) -> Iterator[_T]: ... def reversed(object: Sequence[_T]) -> Iterator[_T]: ... def repr(o: object) -> str: ... @overload -def round(number: float) -> int: ... +def round(number: float) -> float: ... @overload def round(number: float, ndigits: int) -> float: ... # Always return a float if given ndigits. @overload