Home
last modified time | relevance | path

Searched refs:body_encode (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dcharset.py378 def body_encode(self, s, convert=True): member in Charset
393 return email.base64mime.body_encode(s)
395 return email.quoprimime.body_encode(s)
Dbase64mime.py155 body_encode = encode variable
Dquoprimime.py261 body_encode = encode variable
Dmessage.py264 self._payload = charset.body_encode(self._payload)
270 self._payload = charset.body_encode(self._payload)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
Dtest_email_renamed.py2770 eq('hello w=F6rld', c.body_encode('hello w\xf6rld'))
2773 eq('aGVsbG8gd29ybGQ=\n', c.body_encode('hello world'))
2776 eq('hello world', c.body_encode('hello world'))
2782 c.body_encode('\xb5\xc6\xc3\xcf\xbb\xfe\xc9\xd7'))
2784 c.body_encode('\xb5\xc6\xc3\xcf\xbb\xfe\xc9\xd7', False))
2794 eq('hello w\xf6rld', c.body_encode('hello w\xf6rld'))
Dtest_email.py2941 eq('hello w=F6rld', c.body_encode('hello w\xf6rld'))
2944 eq('aGVsbG8gd29ybGQ=\n', c.body_encode('hello world'))
2947 eq('hello world', c.body_encode('hello world'))
2953 c.body_encode('\xb5\xc6\xc3\xcf\xbb\xfe\xc9\xd7'))
2955 c.body_encode('\xb5\xc6\xc3\xcf\xbb\xfe\xc9\xd7', False))
2965 eq('hello w\xf6rld', c.body_encode('hello w\xf6rld'))