mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 11:07:17 +08:00
add (overwrite with) mypy stubs, if available
This commit is contained in:
11
stdlib/2.7/md5.pyi
Normal file
11
stdlib/2.7/md5.pyi
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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 = None) -> md5: ...
|
||||
blocksize = 0
|
||||
digest_size = 0
|
||||
Reference in New Issue
Block a user