diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-04-12 19:01:28 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-04-12 19:01:28 (GMT) |
commit | 94f90dd4a1038232c354c3506a5cf365c4a88531 (patch) | |
tree | f39e6f83e37f9ac1c1d6a518cb1ca3bed1b75b26 /Lib/email/header.py | |
parent | 27be5da8310931bfb3c02769f91e67429b08c545 (diff) | |
parent | 308f14aeaeab3b8c186c666c5783c657841f8577 (diff) | |
download | cpython-94f90dd4a1038232c354c3506a5cf365c4a88531.zip cpython-94f90dd4a1038232c354c3506a5cf365c4a88531.tar.gz cpython-94f90dd4a1038232c354c3506a5cf365c4a88531.tar.bz2 |
Merge: Add maxlinelen to docstring, delete obsolete wording
Diffstat (limited to 'Lib/email/header.py')
-rw-r--r-- | Lib/email/header.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/email/header.py b/Lib/email/header.py index a0f7c45..1bbf8c5 100644 --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -292,12 +292,12 @@ class Header: 75-character length limit on any given encoded header field, so line-wrapping must be performed, even with double-byte character sets. - This method will do its best to convert the string to the correct - character set used in email, and encode and line wrap it safely with - the appropriate scheme for that character set. - - If the given charset is not known or an error occurs during - conversion, this function will return the header untouched. + Optional maxlinelen specifies the maxiumum length of each generated + line, exclusive of the linesep string. Individual lines may be longer + than maxlinelen if a folding point cannot be found. The first line + will be shorter by the length of the header name plus ": " if a header + name was specified at Header construction time. The default value for + maxlinelen is determined at header construction time. Optional splitchars is a string containing characters to split long ASCII lines on, in rough support of RFC 2822's `highest level |