From: Giampaolo RodolĂ  Date: Mon, 1 Nov 2010 15:29:20 +0000 (+0000) Subject: fix syntax highlighting in asyncore example code X-Git-Tag: v3.1.3rc1~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04d40ee7504e8f6832b017eaf23ec0ee802b99f8;p=thirdparty%2FPython%2Fcpython.git fix syntax highlighting in asyncore example code --- diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index 7edf6128f709..eca4d1b10e42 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: