[Python-checkins] cpython (3.2): Fix closes issue 12360 - correcting parameter names in asyncore documentation.

senthil.kumaran python-checkins at python.org
Mon Jun 20 03:25:38 CEST 2011


http://hg.python.org/cpython/rev/d310cc1c3a5d
changeset:   70896:d310cc1c3a5d
branch:      3.2
parent:      70888:0cc554b104c1
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Sun Jun 19 18:22:33 2011 -0700
summary:
  Fix closes issue 12360 -  correcting parameter names in asyncore documentation.

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


diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -157,8 +157,8 @@
 
       Called on listening channels (passive openers) when a connection has been
       established with a new remote endpoint that has issued a :meth:`connect`
-      call for the local endpoint.  *conn* is a *new* socket object usable to
-      send and receive data on the connection, and *address* is the address
+      call for the local endpoint.  *sock* is a *new* socket object usable to
+      send and receive data on the connection, and *addr* is the address
       bound to the socket on the other end of the connection.
 
       .. versionadded:: 3.2

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


More information about the Python-checkins mailing list