diff options
| author | Senthil Kumaran <senthil@uthcode.com> | 2011-06-19 18:22:33 -0700 |
|---|---|---|
| committer | Senthil Kumaran <senthil@uthcode.com> | 2011-06-19 18:22:33 -0700 |
| commit | 656df5ec3eaf879980b8587e30831612de9d049f (patch) | |
| tree | 29d3ae965dd6f602830ded81f1c5dd6cefa4a827 | |
| parent | 150857028ca931e9b73c6472a89476d84c8724c1 (diff) | |
| download | cpython-git-656df5ec3eaf879980b8587e30831612de9d049f.tar.gz | |
Fix closes issue 12360 - correcting parameter names in asyncore documentation.
| -rw-r--r-- | Doc/library/asyncore.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index 5f95d41161..619b7bb639 100644 --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -157,8 +157,8 @@ any that have been added to the map during asynchronous service) is closed. 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 |
