From: Berker Peksag Date: Fri, 17 Apr 2015 01:58:45 +0000 (+0300) Subject: Fix two typos in AbstractBasicAuthHandler documentation. X-Git-Tag: v3.5.0a4~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d7dced188173289508639e1ff6f29ef31228993;p=python Fix two typos in AbstractBasicAuthHandler documentation. --- diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 1ae3e43461..5010fc34e6 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -304,7 +304,7 @@ The following classes are provided: :ref:`http-password-mgr-with-prior-auth`), then the handler will use the ``is_authenticated`` result for a given URI to determine whether or not to send authentication credentials with the request. If ``is_authenticated`` - returns ``True`` for the URI, credentials are sent. If ``is_authenticated + returns ``True`` for the URI, credentials are sent. If ``is_authenticated`` is ``False``, credentials are not sent, and then if a ``401`` response is received the request is re-sent with the authentication credentials. If authentication succeeds, ``update_authenticated`` is called to set @@ -312,7 +312,8 @@ The following classes are provided: the URI or any of its super-URIs will automatically include the authentication credentials. - .. versionadded:: 3.5: added ``is_authenticated`` support. + .. versionadded:: 3.5 + Added ``is_authenticated`` support. .. class:: HTTPBasicAuthHandler(password_mgr=None)