(issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi)

This commit is contained in:
Giampaolo Rodolà 2011-02-25 14:50:57 +00:00
parent c9c2c8b034
commit 61a0bf5864
1 changed files with 3 additions and 2 deletions

View File

@ -309,7 +309,7 @@ implement its socket handling::
asyncore Example basic echo server
----------------------------------
Here is abasic echo server that uses the :class:`dispatcher` class to accept
Here is a basic echo server that uses the :class:`dispatcher` class to accept
connections and dispatches the incoming connections to a handler::
import asyncore
@ -319,7 +319,8 @@ connections and dispatches the incoming connections to a handler::
def handle_read(self):
data = self.recv(8192)
self.send(data)
if data:
self.send(data)
class EchoServer(asyncore.dispatcher):