[Python-checkins] r86088 - python/branches/release31-maint/Doc/library/asyncore.rst

giampaolo.rodola python-checkins at python.org
Mon Nov 1 16:29:20 CET 2010


Author: giampaolo.rodola
Date: Mon Nov  1 16:29:20 2010
New Revision: 86088

Log:
fix syntax highlighting in asyncore example code

Modified:
   python/branches/release31-maint/Doc/library/asyncore.rst

Modified: python/branches/release31-maint/Doc/library/asyncore.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/asyncore.rst	(original)
+++ python/branches/release31-maint/Doc/library/asyncore.rst	Mon Nov  1 16:29:20 2010
@@ -282,8 +282,8 @@
            self.buffer = self.buffer[sent:]
 
 
-    client = HTTPClient('www.python.org', '/')
-    asyncore.loop()
+   client = HTTPClient('www.python.org', '/')
+   asyncore.loop()
 
 .. _asyncore-example-2:
 


More information about the Python-checkins mailing list