From 61a0bf58643c02df01b26d0d29347f6626888e47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giampaolo=20Rodol=C3=A0?= Date: Fri, 25 Feb 2011 14:50:57 +0000 Subject: [PATCH] (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi) --- Doc/library/asyncore.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index b168ca71883..54dd249ca7f 100644 --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -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):