[Python-checkins] python/dist/src/Lib/email base64MIME.py,1.5,1.5.8.1

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Sun, 02 Mar 2003 22:41:58 -0800


Update of /cvsroot/python/python/dist/src/Lib/email
In directory sc8-pr-cvs1:/tmp/cvs-serv2091

Modified Files:
      Tag: folding-reimpl-branch
	base64MIME.py 
Log Message:
Remove an outdated comment.


Index: base64MIME.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/base64MIME.py,v
retrieving revision 1.5
retrieving revision 1.5.8.1
diff -C2 -d -r1.5 -r1.5.8.1
*** base64MIME.py	28 Sep 2002 20:59:12 -0000	1.5
--- base64MIME.py	3 Mar 2003 06:41:55 -0000	1.5.8.1
***************
*** 103,109 ****
      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]))
--- 103,106 ----