From c09959ae0f76ee758980c999ff777ae72375b1b2 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Wed, 10 Apr 2013 17:59:20 +0300 Subject: [PATCH] #17635: fix wrong function name in multiprocessing docs. --- Doc/library/multiprocessing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 323e2fd0402..fe38d23ea65 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1848,7 +1848,7 @@ multiple connections at the same time. then a welcome message is sent to the other end of the connection. Otherwise :exc:`~multiprocessing.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.