summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-04-10 17:59:20 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-04-10 17:59:20 +0300
commitc09959ae0f76ee758980c999ff777ae72375b1b2 (patch)
tree3bb4d9f70e362635d2e8b70d62edb5e8cbe830f5
parentd9fbf36bbd9e19c2973dae507f0a522c62ec7be9 (diff)
downloadcpython-git-c09959ae0f76ee758980c999ff777ae72375b1b2.tar.gz
#17635: fix wrong function name in multiprocessing docs.
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 323e2fd040..fe38d23ea6 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.