From 04d40ee7504e8f6832b017eaf23ec0ee802b99f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giampaolo=20Rodol=C3=A0?= Date: Mon, 1 Nov 2010 15:29:20 +0000 Subject: [PATCH] fix syntax highlighting in asyncore example code --- Doc/library/asyncore.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index 7edf6128f70..eca4d1b10e4 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: