Home | History | Annotate | Download | only in email

Lines Matching full:subpart

22     """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 yield from subpart.walk()
41 for subpart in msg.walk():
42 payload = subpart.get_payload(decode=decode)
54 for subpart in msg.walk():
55 if subpart.get_content_maintype() == maintype:
56 if subtype is None or subpart.get_content_subtype() == subtype:
57 yield subpart
73 for subpart in msg.get_payload():
74 _structure(subpart, fp, level+1, include_default)