Home | History | Annotate | Download | only in email

Lines Matching refs:splitchars

292     def _split(self, s, charset, maxlinelen, splitchars):
320 return self._split_ascii(s, charset, maxlinelen, splitchars)
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
338 def _split_ascii(self, s, charset, firstlen, splitchars):
340 self._continuation_ws, splitchars)
378 def encode(self, splitchars=';, '):
396 Optional splitchars is a string containing characters to split long
411 newchunks += self._split(s, charset, targetlen, splitchars)
423 def _split_ascii(s, firstlen, restlen, continuation_ws, splitchars):
438 for ch in splitchars: