Fix parse errors

This commit is contained in:
Matthias Kramm
2015-11-09 13:37:08 -08:00
parent 20f8635d73
commit 375bf063b1
6 changed files with 14 additions and 15 deletions

View File

@@ -59,8 +59,8 @@ class MIMEPart(Message):
def get_body(self, preferencelist=...): ...
def iter_attachments(self): ...
def iter_parts(self): ...
def get_content(self, *args, *, content_manager=None, **kw): ...
def set_content(self, *args, *, content_manager=None, **kw): ...
def get_content(self, *args, content_manager=None, **kw): ...
def set_content(self, *args, content_manager=None, **kw): ...
def make_related(self, boundary=None): ...
def make_alternative(self, boundary=None): ...
def make_mixed(self, boundary=None): ...