diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-07 20:02:19 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-07 20:02:19 (GMT) |
commit | 1e949890f618867b7eabc1c08873611e960f5d03 (patch) | |
tree | 04554726253eecaf972503d7f8660a93a2539f98 /Misc | |
parent | bd3a11ba34ff57e1a376d6a6eff2e636bdee2160 (diff) | |
download | cpython-1e949890f618867b7eabc1c08873611e960f5d03.zip cpython-1e949890f618867b7eabc1c08873611e960f5d03.tar.gz cpython-1e949890f618867b7eabc1c08873611e960f5d03.tar.bz2 |
#17369: Improve handling of broken RFC2231 values in get_filename.
This fixes a regression relative to python2.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -45,6 +45,10 @@ Core and Builtins Library ------- +- Issue #17369: get_filename was raising an exception if the filename + parameter's RFC2231 encoding was broken in certain ways. This was + a regression relative to python2. + - Issue #20013: Some imap servers disconnect if the current mailbox is deleted, and imaplib did not handle that case gracefully. Now it handles the 'bye' correctly. |