[Python-checkins] cpython (3.3): #17635: fix wrong function name in multiprocessing docs.

ezio.melotti python-checkins at python.org
Wed Apr 10 17:01:35 CEST 2013


http://hg.python.org/cpython/rev/5d39d459b90d
changeset:   83232:5d39d459b90d
branch:      3.3
parent:      83211:b3d5621511db
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Wed Apr 10 17:59:20 2013 +0300
summary:
  #17635: fix wrong function name in multiprocessing docs.

files:
  Doc/library/multiprocessing.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1848,7 +1848,7 @@
    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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list