Home | History | Annotate | Download | only in email

Lines Matching refs:maxlinelen

117                   maxlinelen=76, eol=NL):
133 with each line wrapped safely at, at most, maxlinelen characters (defaults
134 to 76 characters). If maxlinelen is None, the entire string is encoded in
152 # Quopri encode each line, in encoded chunks no greater than maxlinelen in
155 if maxlinelen is None:
159 max_encoded = maxlinelen - len(charset) - MISC_LEN - 1
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
182 """Encode with quoted-printable, wrapping at maxlinelen characters.
192 Each line will be wrapped at, at most, maxlinelen characters (defaults to
236 if len(encoded_line) + len(c) >= maxlinelen:
245 if len(encoded_line) + len(prev) > maxlinelen: