From: Masayuki Yamamoto Date: Sun, 19 Nov 2017 07:33:37 +0000 (+0900) Subject: Document parameters of BaseServer.finish_request() (GH-4445) X-Git-Tag: v3.7.0a3~142 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7750bded92d908cbc422c57b97214f8eec615b0d;p=python Document parameters of BaseServer.finish_request() (GH-4445) --- diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index 218a31c848..e12c8c9784 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -289,7 +289,7 @@ Server Objects .. XXX should the default implementations of these be documented, or should it be assumed that the user will look at socketserver.py? - .. method:: finish_request() + .. method:: finish_request(request, client_address) Actually processes the request by instantiating :attr:`RequestHandlerClass` and calling its :meth:`~BaseRequestHandler.handle` method.