fix syntax highlighting in asyncore example code

This commit is contained in:
Giampaolo Rodolà 2010-11-01 15:29:20 +00:00
parent 5ea3d0f95b
commit 04d40ee750
1 changed files with 2 additions and 2 deletions

View File

@ -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: