diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:29:20 (GMT) |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:29:20 (GMT) |
commit | 04d40ee7504e8f6832b017eaf23ec0ee802b99f8 (patch) | |
tree | 1a06d47c6ce88ecde6f6277088ebccd4114896e1 /Doc | |
parent | 5ea3d0f95b51009fa1c3409e7dd1c12006427ccc (diff) | |
download | cpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.zip cpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.tar.gz cpython-04d40ee7504e8f6832b017eaf23ec0ee802b99f8.tar.bz2 |
fix syntax highlighting in asyncore example code
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncore.rst | 4 |
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: |