summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-02-19 17:20:32 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-02-19 17:20:32 (GMT)
commit8aa164b395d785598b0708644a6802b71d78660c (patch)
tree17a63104403afdebca2f0a5a327c1ca996b4f194 /Misc
parent5e06d1d0b9964513068a993074340b07e17fa04e (diff)
parent6cd6f015567d35be5831f0095b39a512842d31f2 (diff)
downloadcpython-8aa164b395d785598b0708644a6802b71d78660c.zip
cpython-8aa164b395d785598b0708644a6802b71d78660c.tar.gz
cpython-8aa164b395d785598b0708644a6802b71d78660c.tar.bz2
Merge: #13700: Make imap.authenticate with authobject work.
This fixes a bytes/string confusion in the API which prevented custom authobjects from working at all. Original patch by Erno Tukia.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d5ac5f8..d702ed1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -260,6 +260,9 @@ Core and Builtins
Library
-------
+- Issue #13700: Fix byte/string handling in imaplib authentication when an
+ authobject is specified.
+
- Issue #13153: Tkinter functions now raise TclError instead of ValueError when
a string argument contains non-BMP character.