diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-10 18:13:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 18:13:13 (GMT) |
commit | 011141f312f11b35ac163d9d52fe48e4bb61a814 (patch) | |
tree | e04341e715304ffb21a7b6bbf7743b6bc939bd97 /Lib/smtplib.py | |
parent | 4d5d219a7ae1351e6f6e7c1c9845a499927d1219 (diff) | |
download | cpython-011141f312f11b35ac163d9d52fe48e4bb61a814.zip cpython-011141f312f11b35ac163d9d52fe48e4bb61a814.tar.gz cpython-011141f312f11b35ac163d9d52fe48e4bb61a814.tar.bz2 |
closes bpo-34525: Fix smtplib's authobject() documentation (GH-8965)
(cherry picked from commit 78deb7f33227972987722bc3fed5bcb45fae869e)
Co-authored-by: Sebastian Rittau <srittau@rittau.org>
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 048c6bf..5e1bc0b 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -615,7 +615,7 @@ class SMTP: It will be called to process the server's challenge response; the challenge argument it is passed will be a bytes. It should return - bytes data that will be base64 encoded and sent to the server. + an ASCII string that will be base64 encoded and sent to the server. Keyword arguments: - initial_response_ok: Allow sending the RFC 4954 initial-response |