Files
typeshed/stdlib/2.7/md5.pyi
2015-11-09 13:55:02 -08:00

12 lines
275 B
Python

# Stubs for Python 2.7 md5 stdlib module
class md5(object):
def update(self, arg: str) -> None: ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def copy(self) -> md5: ...
def new(string: str = ...) -> md5: ...
blocksize = 0
digest_size = 0