summaryrefslogtreecommitdiffstats
path: root/Lib/email/quopriMIME.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge of the folding-reimpl-branch. Specific changes,Barry Warsaw2003-03-061-4/+9
| | | | | | | | | | | _max_append(): Change the comparison so that the new string is concatenated if it's less than or equal to the max length. header_encode(): Allow for maxlinelen == None to mean, don't do any line splitting. This is because this module is mostly used by higher level abstractions (Header.py) which already ensures line lengths. We do this in a cheapo way by setting the max_encoding to some insanely <100k wink> large number.
* Use True/False everywhere, and other code cleanups.Barry Warsaw2002-09-281-11/+17
|
* _max_append(): When adding the string `s' to its own line, it shouldBarry Warsaw2002-06-281-2/+2
| | | | | be lstrip'd so that old continuation whitespace is replaced by that specified in Header's continuation_ws parameter.
* Whitespace normalization.Tim Peters2002-05-231-4/+4
|
* Sync'ing with standalone email package 2.0.1. This adds support forBarry Warsaw2002-04-101-0/+312
non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;).