Searched refs:_subparts (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/email/mime/ |
D | multipart.py | 16 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, argument 43 if _subparts: 44 for p in _subparts:
|
/external/python/cpython3/Lib/email/mime/ |
D | multipart.py | 16 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, argument 44 if _subparts: 45 for p in _subparts:
|
/external/python/cpython2/Doc/library/ |
D | email.mime.rst | 64 .. class:: MIMEMultipart([_subtype[, boundary[, _subparts[, _params]]]]) 79 *_subparts* is a sequence of initial subparts for the payload. It must be
|
/external/python/cpython3/Doc/library/ |
D | email.mime.rst | 77 .. class:: MIMEMultipart(_subtype='mixed', boundary=None, _subparts=None, \ 93 *_subparts* is a sequence of initial subparts for the payload. It must be
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 1900 msg = MIMEMultipart(_subparts=(text1, text2))
|
D | test_email.py | 1981 msg = MIMEMultipart(_subparts=(text1, text2))
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 2681 msg = MIMEMultipart(_subparts=(text1, text2))
|