diff --git a/stdlib/2.7/hashlib.pyi b/stdlib/2.7/hashlib.pyi index dd7edd320..95f2b82f6 100644 --- a/stdlib/2.7/hashlib.pyi +++ b/stdlib/2.7/hashlib.pyi @@ -11,7 +11,7 @@ class _hash(object): def hexdigest(self) -> str: ... def copy(self) -> _hash: ... -def new(algo: str = ...) -> _hash: ... +def new(name: str, data: str = ...) -> _hash: ... def md5(s: str = ...) -> _hash: ... def sha1(s: str = ...) -> _hash: ...