mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 19:32:13 +08:00
add (overwrite with) mypy stubs, if available
This commit is contained in:
12
stdlib/2.7/sha.pyi
Normal file
12
stdlib/2.7/sha.pyi
Normal file
@@ -0,0 +1,12 @@
|
||||
# Stubs for Python 2.7 sha stdlib module
|
||||
|
||||
class sha(object):
|
||||
def update(self, arg: str) -> None: ...
|
||||
def digest(self) -> str: ...
|
||||
def hexdigest(self) -> str: ...
|
||||
def copy(self) -> sha: ...
|
||||
|
||||
def new(string: str = None) -> sha: ...
|
||||
blocksize = 0
|
||||
digest_size = 0
|
||||
|
||||
Reference in New Issue
Block a user