mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
add _md5.pyi
This commit is contained in:
13
builtins/2.7/_md5.pyi
Normal file
13
builtins/2.7/_md5.pyi
Normal 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: ...
|
||||
Reference in New Issue
Block a user