]> granicus.if.org Git - python/commitdiff
Document parameters of BaseServer.finish_request() (GH-4445)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 19 Nov 2017 07:41:19 +0000 (23:41 -0800)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 19 Nov 2017 07:41:19 +0000 (10:41 +0300)
(cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d)

Doc/library/socketserver.rst

index 218a31c848aa1b1960e742b4c50ad08f06ec433d..e12c8c97844fa71b785679382bc98b77b197b863 100644 (file)
@@ -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.