mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
27
stdlib/@python2/mimetools.pyi
Normal file
27
stdlib/@python2/mimetools.pyi
Normal file
@@ -0,0 +1,27 @@
|
||||
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): ...
|
||||
Reference in New Issue
Block a user