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

Berker Peksag webhook-mailer at python.org
Sun Nov 19 02:41:22 EST 2017


https://github.com/python/cpython/commit/2f1ccf5e9c8359292d46b7bf65f4645a50b06857
commit: 2f1ccf5e9c8359292d46b7bf65f4645a50b06857
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2017-11-19T10:41:19+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 218a31c848a..e12c8c97844 100644
--- a/Doc/library/socketserver.rst
+++ b/Doc/library/socketserver.rst
@@ -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.



More information about the Python-checkins mailing list