[Python-checkins] Document parameters of BaseServer.finish_request() (GH-4445)

Berker Peksag webhook-mailer at python.org
Sun Nov 19 07:20:16 EST 2017


https://github.com/python/cpython/commit/aa9100567f20ac12c6bb1f8800344e18135cc96f
commit: aa9100567f20ac12c6bb1f8800344e18135cc96f
branch: 2.7
author: Masayuki Yamamoto <ma3yuki.8mamo10 at gmail.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2017-11-19T15:20:09+03:00
summary:

Document parameters of BaseServer.finish_request() (GH-4445)

(cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d)

files:
M Doc/library/socketserver.rst

diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index a81214e906c..1ad4b682ae6 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.



More information about the Python-checkins mailing list