diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-11-19 07:41:19 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-11-19 07:41:19 (GMT) |
commit | 2f1ccf5e9c8359292d46b7bf65f4645a50b06857 (patch) | |
tree | 85db2ebbfb670f4748bc237ce6b45ee03b3a8fe7 /Doc/library | |
parent | c69611990365ae2f2efffd191de0aba9ee98d95c (diff) | |
download | cpython-2f1ccf5e9c8359292d46b7bf65f4645a50b06857.zip cpython-2f1ccf5e9c8359292d46b7bf65f4645a50b06857.tar.gz cpython-2f1ccf5e9c8359292d46b7bf65f4645a50b06857.tar.bz2 |
Document parameters of BaseServer.finish_request() (GH-4445)
(cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/socketserver.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index 218a31c..e12c8c9 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. |