Home
last modified time | relevance | path

Searched refs:MIMEText (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/test/test_email/
Dtest_email.py27 from email.mime.text import MIMEText
773 m = MIMEText('abc\n')
786 m = MIMEText('É testabc\n')
817 msg = MIMEText('hello world')
820 msg = MIMEText('hello \xf8 world')
823 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1')
831 msg = MIMEText('文\n', _charset='euc-jp')
842 msg = MIMEText('\xe1\xf6\n', 'text', 'ISO-8859-1')
853 msg = MIMEText('\u017c\n', 'text', 'ISO-8859-2')
1004 msg = MIMEText('')
[all …]
/third_party/python/Lib/email/mime/
Dtext.py14 class MIMEText(MIMENonMultipart): class
/third_party/python/Lib/test/
Dtest_smtplib.py495 m = email.mime.text.MIMEText('A test message')
517 m = email.mime.text.MIMEText('A test message')
554 m = email.mime.text.MIMEText('A test message')
583 m = email.mime.text.MIMEText('A test message')
614 m = email.mime.text.MIMEText('A test message')
643 m = email.mime.text.MIMEText('A test message')
680 m = email.mime.text.MIMEText('A test message')
/third_party/python/Doc/library/
Demail.mime.rst229 .. class:: MIMEText(_text, _subtype='plain', _charset=None, *, policy=compat32)
234 :class:`MIMEText` class is used to create MIME objects of major type
244 MIMEText object created will have both a :mailheader:`Content-Type` header
Demail.encoders.rst16 should not be called explicitly since the :class:`~email.mime.text.MIMEText`
/third_party/python/Misc/NEWS.d/
D3.6.0b1.rst745 Don't pass str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz.
D3.5.3rc1.rst957 Don't pass str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz.
D3.5.0a1.rst301 _charset parameter of MIMEText now also accepts email.charset.Charset
/third_party/python/Doc/whatsnew/
D3.5.rst1117 The :class:`mime.text.MIMEText <email.mime.text.MIMEText>` constructor now
/third_party/python/Misc/
DHISTORY8034 - Issue #14380: MIMEText now defaults to utf-8 when passed non-ASCII unicode
18984 email.MIMEText). The old names are still supported for now. Several
19736 _encoder argument to the MIMEText constructor, Message.add_payload(),