From: Ezio Melotti Date: Wed, 10 Apr 2013 14:59:20 +0000 (+0300) Subject: #17635: fix wrong function name in multiprocessing docs. X-Git-Tag: v2.7.5~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3218f6511face49c4b3563160ca7b2559c363d5c;p=thirdparty%2FPython%2Fcpython.git #17635: fix wrong function name in multiprocessing docs. --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index b7d11941c73c..6f9298ad28d9 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1744,7 +1744,7 @@ authentication* using the :mod:`hmac` module. then a welcome message is sent to the other end of the connection. Otherwise :exc:`AuthenticationError` is raised. -.. function:: answerChallenge(connection, authkey) +.. function:: answer_challenge(connection, authkey) Receive a message, calculate the digest of the message using *authkey* as the key, and then send the digest back.