diff options
author | Masayuki Yamamoto <ma3yuki.8mamo10@gmail.com> | 2017-11-19 07:33:37 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-11-19 07:33:37 (GMT) |
commit | 7750bded92d908cbc422c57b97214f8eec615b0d (patch) | |
tree | 260501c51467429a54f67d432a5c5bada36e0e48 /Doc | |
parent | 0c71653cb8231f176d02140fdef3706de2e93b9f (diff) | |
download | cpython-7750bded92d908cbc422c57b97214f8eec615b0d.zip cpython-7750bded92d908cbc422c57b97214f8eec615b0d.tar.gz cpython-7750bded92d908cbc422c57b97214f8eec615b0d.tar.bz2 |
Document parameters of BaseServer.finish_request() (GH-4445)
Diffstat (limited to 'Doc')
-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. |