summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-05-23 18:49:56 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-05-23 18:49:56 (GMT)
commitcaa27b7823f12a971aec54f77a06280fdd84f058 (patch)
tree0874907c5c792cc18f957daa0ff16072aad31829 /Misc
parentdfea192ad4317aab757989b0c815a5146b0d6336 (diff)
downloadcpython-caa27b7823f12a971aec54f77a06280fdd84f058.zip
cpython-caa27b7823f12a971aec54f77a06280fdd84f058.tar.gz
cpython-caa27b7823f12a971aec54f77a06280fdd84f058.tar.bz2
Fix for issue 5259: ASCII encode the username and password before passing
it to encode_base64, which requires bytes in py3k. Fix by Musashi Tamura, tests by Marcin Bachry.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f14d45d..b31a3b6 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -710,6 +710,7 @@ Andrew Svetlov
Paul Swartz
Thenault Sylvain
Geoff Talvola
+Musashi Tamura
William Tanksley
Christian Tanzer
Steven Taschuk
diff --git a/Misc/NEWS b/Misc/NEWS
index 1380b29..a736ad8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #5259: smtplib plain auth login no longer gives a traceback. Fix
+ by Musashi Tamura, tests by Marcin Bachry.
+
- Issue #1983: Fix functions taking or returning a process identifier to use
the dedicated C type ``pid_t`` instead of a C ``int``. Some platforms have
a process identifier type wider than the standard C integer type.