summaryrefslogtreecommitdiffstats
path: root/Doc/library/socketserver.rst
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2012-12-25 22:46:32 (GMT)
committerKristján Valur Jónsson <kristjan@ccpgames.com>2012-12-25 22:46:32 (GMT)
commitb0d1c37d737742eb098b985475987f460a13a6c2 (patch)
treed87fcaac580feb5a429ed92a42a77fc1901c6cc5 /Doc/library/socketserver.rst
parentc08ded9e4a3073e6f6315d0fa462debdb6d28304 (diff)
downloadcpython-b0d1c37d737742eb098b985475987f460a13a6c2.zip
cpython-b0d1c37d737742eb098b985475987f460a13a6c2.tar.gz
cpython-b0d1c37d737742eb098b985475987f460a13a6c2.tar.bz2
Issue #14574: Ignore socket errors raised when flushing a connection on close.
Diffstat (limited to 'Doc/library/socketserver.rst')
-rw-r--r--Doc/library/socketserver.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index c34b486..d225392 100644
--- a/Doc/library/socketserver.rst
+++ b/Doc/library/socketserver.rst
@@ -306,8 +306,8 @@ request.
.. method:: RequestHandler.finish()
Called after the :meth:`handle` method to perform any clean-up actions
- required. The default implementation does nothing. If :meth:`setup` or
- :meth:`handle` raise an exception, this function will not be called.
+ required. The default implementation does nothing. If :meth:`setup`
+ raises an exception, this function will not be called.
.. method:: RequestHandler.handle()