Add email.base64mime stub (#6659)

This commit is contained in:
Joseph Young
2021-12-22 22:25:00 +00:00
committed by GitHub
parent 8b5feeb101
commit d6f062314f

View File

@@ -0,0 +1,7 @@
def header_length(bytearray: str | bytes) -> int: ...
def header_encode(header_bytes: str | bytes, charset: str = ...) -> str: ...
def body_encode(s: bytes, maxlinelen: int = ..., eol: str = ...) -> str: ...
def decode(string: str | bytes) -> bytes: ...
body_decode = decode
decodestring = decode