summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2012-05-15 13:46:00 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2012-05-15 13:46:00 (GMT)
commit0fb41b56ea1415943569ee6dda1c9d1aec952c37 (patch)
tree7d08b3032d1d0518f0f4cc3f623a2b96f77c780a /Doc/library
parentffa1d0b8d53f426f1f9a0d47f25440b8994c4fb0 (diff)
downloadcpython-0fb41b56ea1415943569ee6dda1c9d1aec952c37.zip
cpython-0fb41b56ea1415943569ee6dda1c9d1aec952c37.tar.gz
cpython-0fb41b56ea1415943569ee6dda1c9d1aec952c37.tar.bz2
remove unused import in asyncore doc
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asynchat.rst3
-rw-r--r--Doc/library/asyncore.rst4
2 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst
index 75b3cda..55c61d7 100644
--- a/Doc/library/asynchat.rst
+++ b/Doc/library/asynchat.rst
@@ -197,6 +197,9 @@ The :meth:`handle_request` method is called once all relevant input has been
marshalled, after setting the channel terminator to ``None`` to ensure that
any extraneous data sent by the web client are ignored. ::
+
+ import asynchat
+
class http_request_handler(asynchat.async_chat):
def __init__(self, sock, addr, sessions, log):
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
index 8750659..7cacca1 100644
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -277,7 +277,7 @@ asyncore Example basic HTTP client
Here is a very basic HTTP client that uses the :class:`dispatcher` class to
implement its socket handling::
- import asyncore, socket
+ import asyncore
class HTTPClient(asyncore.dispatcher):
@@ -317,7 +317,6 @@ Here is a basic echo server that uses the :class:`dispatcher` class to accept
connections and dispatches the incoming connections to a handler::
import asyncore
- import socket
class EchoHandler(asyncore.dispatcher_with_send):
@@ -341,4 +340,3 @@ connections and dispatches the incoming connections to a handler::
server = EchoServer('localhost', 8080)
asyncore.loop()
-