]> granicus.if.org Git - python/commitdiff
Document parameters of BaseServer.finish_request() (GH-4445)
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>
Sun, 19 Nov 2017 12:20:09 +0000 (21:20 +0900)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 19 Nov 2017 12:20:09 +0000 (15:20 +0300)
(cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d)

Doc/library/socketserver.rst

index a81214e906c5dcbd6f4ee3c91415dd09992c8c7f..1ad4b682ae6ce32b76b6f36c72ddd0eaec67b967 100644 (file)
@@ -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.