[issue9208] SMTPHandler does not handle unicode strings

2010-07-09 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> vinay.sajip nosy: +vinay.sajip versions: +Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___ __

[issue9208] SMTPHandler does not handle unicode strings

2010-07-08 Thread norbidur
New submission from norbidur : SMTPHandler fails when receiving unicode strings. example : import logging,logging.handlers smtpHandler = logging.handlers.SMTPHandler( mailhost=("smtp.free.fr",25), fromaddr="f...@free.fr", toaddrs="t...@free.fr", subject=u"error message") LOG = loggi