Searched refs:header_encode (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/email/ |
D | charset.py | 347 def header_encode(self, s, convert=False): member in Charset 365 return email.base64mime.header_encode(s, cset) 367 return email.quoprimime.header_encode(s, cset, maxlinelen=None) 372 return email.base64mime.header_encode(s, cset) 374 return email.quoprimime.header_encode(s, cset, maxlinelen=None)
|
D | base64mime.py | 64 def header_encode(header, charset='iso-8859-1', keep_eols=False, function
|
D | quoprimime.py | 114 def header_encode(header, charset="iso-8859-1", keep_eols=False, function
|
D | header.py | 364 s = charset.header_encode(header)
|
/external/python/cpython2/Doc/library/ |
D | email.charset.rst | 158 .. method:: header_encode(s[, convert]) 179 :meth:`header_encode`, there are no issues with byte boundaries and
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 2635 he = base64mime.header_encode 2690 enc = quoprimime.header_encode 2714 he = quoprimime.header_encode
|
D | test_email.py | 2873 he = base64MIME.header_encode 2928 enc = quopriMIME.header_encode 2952 he = quopriMIME.header_encode
|