Searched refs:splitchars (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/email/ |
D | header.py | 288 def _split(self, s, charset, maxlinelen, splitchars): argument 316 return self._split_ascii(s, charset, maxlinelen, splitchars) 332 return chunk + self._split(last, charset, self._maxlinelen, splitchars) 334 def _split_ascii(self, s, charset, firstlen, splitchars): argument 336 self._continuation_ws, splitchars) 374 def encode(self, splitchars=';, '): argument 407 newchunks += self._split(s, charset, targetlen, splitchars) 418 def _split_ascii(s, firstlen, restlen, continuation_ws, splitchars): argument 433 for ch in splitchars:
|
/external/python/cpython3/Lib/email/ |
D | header.py | 313 def encode(self, splitchars=';, \t', maxlinelen=None, linesep='\n'): argument 355 self._continuation_ws, splitchars) 414 def __init__(self, headerlen, maxlen, continuation_ws, splitchars): argument 418 self._splitchars = splitchars 486 def _ascii_split(self, fws, string, splitchars): argument
|
/external/python/cpython2/Doc/library/ |
D | email.header.rst | 109 .. method:: encode([splitchars]) 113 encodings. Optional *splitchars* is a string containing characters to
|
/external/python/cpython3/Doc/library/ |
D | email.header.rst | 119 .. method:: encode(splitchars=';, \\t', maxlinelen=None, linesep='\\n') 125 Optional *splitchars* is a string containing characters which should be
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 2853 for l in h.encode(splitchars=' ').split('\n '):
|
D | test_email.py | 3094 for l in h.encode(splitchars=' ').split('\n '):
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 4697 for l in h.encode(splitchars=' ').split('\n '):
|