add _md5.pyi

This commit is contained in:
Matthias Kramm
2015-09-21 14:12:40 -07:00
parent 8b4aed493a
commit ecab81569c

13
builtins/2.7/_md5.pyi Normal file
View File

@@ -0,0 +1,13 @@
blocksize = ... # type: int
digest_size = ... # type: int
class MD5Type(object):
name = ... # type: str
block_size = ... # type: int
digest_size = ... # type: int
def copy(self) -> "MD5Type": ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def update(self, arg: str) -> None: ...
def new(arg: str = None) -> MD5Type: ...