diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-10 14:59:20 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-10 14:59:20 (GMT) |
commit | c09959ae0f76ee758980c999ff777ae72375b1b2 (patch) | |
tree | 3bb4d9f70e362635d2e8b70d62edb5e8cbe830f5 | |
parent | d9fbf36bbd9e19c2973dae507f0a522c62ec7be9 (diff) | |
download | cpython-c09959ae0f76ee758980c999ff777ae72375b1b2.zip cpython-c09959ae0f76ee758980c999ff777ae72375b1b2.tar.gz cpython-c09959ae0f76ee758980c999ff777ae72375b1b2.tar.bz2 |
#17635: fix wrong function name in multiprocessing docs.
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 323e2fd..fe38d23 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. |