[issue5304] email/base64mime.py cannot work

2009-04-25 Thread Daniel Diniz
Daniel Diniz added the comment: This is a duplicate of issue 5259. -- nosy: +ajaksu2 resolution: -> duplicate stage: test needed -> committed/rejected status: open -> closed superseder: -> smtplib is broken in Python3 ___ Python tracker

[issue5304] email/base64mime.py cannot work

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> high stage: -> test needed type: compile error -> behavior ___ Python tracker ___ _

[issue5304] email/base64mime.py cannot work

2009-02-17 Thread l5g
New submission from l5g <80723...@qq.com>: When using smtplib to send mail, I meet this bug. Maybe the line """ enc = b2a_base64(s[i:i + max_unencoded]).decode("ascii")""" should be changed to """ enc = b2a_base64((s[i:i + max_unencoded]).encode()).decode("ascii") F