https://bugs.freedesktop.org/show_bug.cgi?id=70796
Andras Timar <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |[email protected] Ever confirmed|0 |1 --- Comment #2 from Andras Timar <[email protected]> --- It is a bug in Python 3. 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" As a workaround, we could use base64 instead of quoted-printable. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
