Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/email/
D_header_value_parser.py2688 def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset): argument
2700 to_encode = str(
2701 get_unstructured(lines[-1][last_ew:] + to_encode))
2703 if to_encode[0] in WSP:
2706 leading_wsp = to_encode[0]
2707 to_encode = to_encode[1:]
2712 if to_encode[-1] in WSP:
2714 trailing_wsp = to_encode[-1]
2715 to_encode = to_encode[:-1]
2717 while to_encode:
[all …]