Home | History | Annotate | Download | only in email

Lines Matching refs:subpart

22     """Walk over the message tree, yielding each subpart.

29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload():
76 _structure(subpart, fp, level+1, include_default)