]> granicus.if.org Git - python/commitdiff
closes bpo-34525: Fix smtplib's authobject() documentation (GH-8965)
authorSebastian Rittau <srittau@rittau.org>
Mon, 10 Sep 2018 17:29:43 +0000 (19:29 +0200)
committerBenjamin Peterson <benjamin@python.org>
Mon, 10 Sep 2018 17:29:43 +0000 (10:29 -0700)
Doc/library/smtplib.rst
Lib/smtplib.py

index 805217252ae87393d8847086d97b46192f09a7d4..6fb0934218a603ade74d2f5b27f56a525fc7564b 100644 (file)
@@ -346,7 +346,7 @@ An :class:`SMTP` instance has the following methods:
 
    If optional keyword argument *initial_response_ok* is true,
    ``authobject()`` will be called first with no argument.  It can return the
-   :rfc:`4954` "initial response" bytes which will be encoded and sent with
+   :rfc:`4954` "initial response" ASCII ``str`` which will be encoded and sent with
    the ``AUTH`` command as below.  If the ``authobject()`` does not support an
    initial response (e.g. because it requires a challenge), it should return
    ``None`` when called with ``challenge=None``.  If *initial_response_ok* is
@@ -355,7 +355,7 @@ An :class:`SMTP` instance has the following methods:
    If the initial response check returns ``None``, or if *initial_response_ok* is
    false, ``authobject()`` 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
+   should return ASCII ``str`` *data* that will be base64 encoded and sent to the
    server.
 
    The ``SMTP`` class provides ``authobjects`` for the ``CRAM-MD5``, ``PLAIN``,
index 048c6bfb0671b1a1eb1db35eeece8e75f757e1b8..5e1bc0b198ed8947e9e4656e8a44fb479631b8e0 100755 (executable)
@@ -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