Issue 21804: Implement thr UTF8 command (RFC 6856) in poplib. (original) (raw)

Issue21804

Created on 2014-06-18 23:14 by zvyn, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
poputf8.patch zvyn,2014-06-18 23:19 review
poputf8-v2.patch zvyn,2014-07-02 01:25 review
Messages (4)
msg220956 - (view) Author: Milan Oberkirch (zvyn) * Date: 2014-06-18 23:14
The poplib classes already use Unicode internally (for everything but capability names). So to implement the UTF8 part of RFC 6856 we only need to enable the user to switch to UTF-8 mode if supported by the server.
msg222064 - (view) Author: Milan Oberkirch (zvyn) * Date: 2014-07-02 01:25
I got the Exception policy of the POP3 class wrong (ignore my review comment on that) and needed to add 'UTF8' to the list of optional commands.
msg243359 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-05-16 19:06
New changeset 6ea762200e27 by R David Murray in branch 'default': #21804: Add RFC 6856 (UTF8) support to poplib. https://hg.python.org/cpython/rev/6ea762200e27
msg243360 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2015-05-16 19:07
Thanks, Milan.
History
Date User Action Args
2022-04-11 14:58:05 admin set github: 66003
2015-05-16 19:07:32 r.david.murray set status: open -> closedresolution: fixedmessages: + stage: commit review -> resolved
2015-05-16 19:06:39 python-dev set nosy: + python-devmessages: +
2015-05-16 18:19:14 r.david.murray set type: enhancementstage: commit review
2014-07-02 01:25:30 zvyn set files: + poputf8-v2.patchmessages: +
2014-06-18 23:19:19 zvyn set files: + poputf8.patch
2014-06-18 23:19:04 zvyn set files: - poputf8.patch
2014-06-18 23:14:44 zvyn create