]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merge of the folding-reimpl-branch. Specific changes,
authorBarry Warsaw <barry@python.org>
Thu, 6 Mar 2003 05:25:00 +0000 (05:25 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 6 Mar 2003 05:25:00 +0000 (05:25 +0000)
Remove a senseless comment.

Lib/email/base64MIME.py

index 56e44e1c2c62d5b0d86e7e015123452463575cab..a247773300a3c7f23efd83f28c61a4bb181f4e31 100644 (file)
@@ -102,9 +102,6 @@ def header_encode(header, charset='iso-8859-1', keep_eols=False,
     max_encoded = maxlinelen - len(charset) - MISC_LEN
     max_unencoded = _floordiv(max_encoded * 3, 4)
 
-    # BAW: Ben's original code used a step of max_unencoded, but I think it
-    # ought to be max_encoded.  Otherwise, where's max_encoded used?  I'm
-    # still not sure what the
     for i in range(0, len(header), max_unencoded):
         base64ed.append(b2a_base64(header[i:i+max_unencoded]))