summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-07-29 00:52:40 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-07-29 00:52:40 (GMT)
commit1ee9283254446998c9f423896b1edffe42f246d3 (patch)
tree999550173f236130b139af1aeb7178ec46378f4d /Doc
parent54d361fd866e811944096e48f8b58595391050ed (diff)
downloadcpython-1ee9283254446998c9f423896b1edffe42f246d3.zip
cpython-1ee9283254446998c9f423896b1edffe42f246d3.tar.gz
cpython-1ee9283254446998c9f423896b1edffe42f246d3.tar.bz2
Issue #23254: Document how to close the TCPServer listening socket.
Patch from Martin Panter.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/socketserver.rst13
1 files changed, 11 insertions, 2 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index 1ec4438..3e49af6 100644
--- a/Doc/library/socketserver.rst
+++ b/Doc/library/socketserver.rst
@@ -33,9 +33,10 @@ Creating a server requires several steps. First, you must create a request
handler class by subclassing the :class:`BaseRequestHandler` class and
overriding its :meth:`handle` method; this method will process incoming
requests. Second, you must instantiate one of the server classes, passing it
-the server's address and the request handler class. Finally, call the
+the server's address and the request handler class. Then call the
:meth:`handle_request` or :meth:`serve_forever` method of the server object to
-process one or many requests.
+process one or many requests. Finally, call :meth:`~BaseServer.server_close`
+to close the socket.
When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
you should explicitly declare how you want your threads to behave on an abrupt
@@ -177,6 +178,13 @@ Server Objects
Tell the :meth:`serve_forever` loop to stop and wait until it does.
+.. method:: BaseServer.server_close()
+
+ Clean up the server. May be overridden.
+
+ .. versionadded:: 2.6
+
+
.. attribute:: BaseServer.address_family
The family of protocols to which the server's socket belongs.
@@ -547,6 +555,7 @@ An example for the :class:`ThreadingMixIn` class::
client(ip, port, "Hello World 3")
server.shutdown()
+ server.server_close()
The output of the example should look something like this::