From: Masayuki Yamamoto Date: Sun, 19 Nov 2017 12:20:09 +0000 (+0900) Subject: Document parameters of BaseServer.finish_request() (GH-4445) X-Git-Tag: v2.7.15rc1~122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa9100567f20ac12c6bb1f8800344e18135cc96f;p=python Document parameters of BaseServer.finish_request() (GH-4445) (cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d) --- diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index a81214e906..1ad4b682ae 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -284,7 +284,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.