]> granicus.if.org Git - python/commitdiff
Document parameters of BaseServer.finish_request() (GH-4445)
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>
Sun, 19 Nov 2017 07:33:37 +0000 (16:33 +0900)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 19 Nov 2017 07:33:37 +0000 (10:33 +0300)
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.