summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncore.rst
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2010-11-01 15:29:20 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2010-11-01 15:29:20 (GMT)
commit04d40ee7504e8f6832b017eaf23ec0ee802b99f8 (patch)
tree1a06d47c6ce88ecde6f6277088ebccd4114896e1 /Doc/library/asyncore.rst
parent5ea3d0f95b51009fa1c3409e7dd1c12006427ccc (diff)
downloadcpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.zip
cpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.tar.gz
cpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.tar.bz2
fix syntax highlighting in asyncore example code
Diffstat (limited to 'Doc/library/asyncore.rst')
-rw-r--r--Doc/library/asyncore.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
index 7edf612..eca4d1b 100644
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -282,8 +282,8 @@ implement its socket handling::
self.buffer = self.buffer[sent:]
- client = HTTPClient('www.python.org', '/')
- asyncore.loop()
+ client = HTTPClient('www.python.org', '/')
+ asyncore.loop()
.. _asyncore-example-2: