summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-11-19 07:33:37 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-11-19 07:33:37 (GMT)
commit7750bded92d908cbc422c57b97214f8eec615b0d (patch)
tree260501c51467429a54f67d432a5c5bada36e0e48
parent0c71653cb8231f176d02140fdef3706de2e93b9f (diff)
downloadcpython-7750bded92d908cbc422c57b97214f8eec615b0d.zip
cpython-7750bded92d908cbc422c57b97214f8eec615b0d.tar.gz
cpython-7750bded92d908cbc422c57b97214f8eec615b0d.tar.bz2
Document parameters of BaseServer.finish_request() (GH-4445)
-rw-r--r--Doc/library/socketserver.rst2
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.