Files
typeshed/stdlib/2/mimetools.pyi
Jelle Zijlstra 5d553c9584 apply black and isort (#4287)
* apply black and isort

* move some type ignores
2020-06-28 13:31:00 -07:00

28 lines
703 B
Python

import rfc822
from typing import Any
class Message(rfc822.Message):
encodingheader: Any
typeheader: Any
def __init__(self, fp, seekable: int = ...): ...
plisttext: Any
type: Any
maintype: Any
subtype: Any
def parsetype(self): ...
plist: Any
def parseplist(self): ...
def getplist(self): ...
def getparam(self, name): ...
def getparamnames(self): ...
def getencoding(self): ...
def gettype(self): ...
def getmaintype(self): ...
def getsubtype(self): ...
def choose_boundary(): ...
def decode(input, output, encoding): ...
def encode(input, output, encoding): ...
def copyliteral(input, output): ...
def copybinary(input, output): ...