This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author timar
Recipients timar
Date 2014-01-09.14:21:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389277318.78.0.594676720592.issue20206@psf.upfronthosting.co.za>
In-reply-to
Content
Try this sample script:

# coding=utf-8
import email
import email.charset
import email.message

c = email.charset.Charset('utf-8')
c.body_encoding = email.charset.QP
m = email.message.Message()
m.set_payload("This is a Greek letter upsilon: υ", c)
print(m.as_string())

Actual result: "This is a Greek letter upsilon: =CF" 
Expected result: "This is a Greek letter upsilon: =CF=85"
History
Date User Action Args
2014-01-09 14:21:58timarsetrecipients: + timar
2014-01-09 14:21:58timarsetmessageid: <1389277318.78.0.594676720592.issue20206@psf.upfronthosting.co.za>
2014-01-09 14:21:58timarlinkissue20206 messages
2014-01-09 14:21:58timarcreate