Commit 61a0bf58 authored by Giampaolo Rodolà's avatar Giampaolo Rodolà

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

parent c9c2c8b0
...@@ -309,7 +309,7 @@ implement its socket handling:: ...@@ -309,7 +309,7 @@ implement its socket handling::
asyncore Example basic echo server 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:: connections and dispatches the incoming connections to a handler::
import asyncore import asyncore
...@@ -319,6 +319,7 @@ connections and dispatches the incoming connections to a handler:: ...@@ -319,6 +319,7 @@ connections and dispatches the incoming connections to a handler::
def handle_read(self): def handle_read(self):
data = self.recv(8192) data = self.recv(8192)
if data:
self.send(data) self.send(data)
class EchoServer(asyncore.dispatcher): class EchoServer(asyncore.dispatcher):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment