Searched refs:collapse_rfc2231_value (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | email.util.rst | 127 .. function:: collapse_rfc2231_value(value[, errors[, fallback_charset]]) 132 language, and value. :func:`collapse_rfc2231_value` turns this into a unicode 138 For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is not
|
D | email.message.rst | 409 :func:`email.utils.collapse_rfc2231_value`, passing in the return value 415 param = email.utils.collapse_rfc2231_value(rawparam)
|
/external/python/cpython3/Doc/library/ |
D | email.utils.rst | 195 .. function:: collapse_rfc2231_value(value, errors='replace', fallback_charset='us-ascii') 200 language, and value. :func:`collapse_rfc2231_value` turns this into a unicode 206 For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is not
|
D | email.compat32-message.rst | 513 :func:`email.utils.collapse_rfc2231_value`, passing in the return value 519 param = email.utils.collapse_rfc2231_value(rawparam)
|
/external/python/cpython2/Lib/email/ |
D | message.py | 687 return utils.collapse_rfc2231_value(filename).strip() 700 return utils.collapse_rfc2231_value(boundary).rstrip()
|
D | utils.py | 318 def collapse_rfc2231_value(value, errors='replace', function
|
/external/python/cpython3/Lib/email/ |
D | utils.py | 308 def collapse_rfc2231_value(value, errors='replace', function
|
D | message.py | 820 return utils.collapse_rfc2231_value(filename).strip() 833 return utils.collapse_rfc2231_value(boundary).rstrip()
|