From: Jesse Noller Date: Mon, 29 Jun 2009 18:24:26 +0000 (+0000) Subject: Issue 5740: multiprocessing.connection.* authkey fixes X-Git-Tag: v2.7a1~875 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34116922d3f775a25394b621846feb58eb15c3a6;p=python Issue 5740: multiprocessing.connection.* authkey fixes --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index eb5ddff524..7aaa8e3816 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1717,7 +1717,7 @@ authentication* using the :mod:`hmac` module. generally be omitted since it can usually be inferred from the format of *address*. (See :ref:`multiprocessing-address-formats`) - If *authentication* is ``True`` or *authkey* is a string then digest + If *authenticate* is ``True`` or *authkey* is a string then digest authentication is used. The key used for authentication will be either *authkey* or ``current_process().authkey)`` if *authkey* is ``None``. If authentication fails then :exc:`AuthenticationError` is raised. See @@ -1759,7 +1759,7 @@ authentication* using the :mod:`hmac` module. If *authkey* is ``None`` and *authenticate* is ``True`` then ``current_process().authkey`` is used as the authentication key. If - *authkey* is ``None`` and *authentication* is ``False`` then no + *authkey* is ``None`` and *authenticate* is ``False`` then no authentication is done. If authentication fails then :exc:`AuthenticationError` is raised. See :ref:`multiprocessing-auth-keys`.