summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-10-02 01:43:46 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-10-02 01:43:46 (GMT)
commit258fabefdefecc83914fc16f79f1131d8ee2dc80 (patch)
tree30f400a3151f8d9119ba5df9dfcb1ad8b78a5e20 /Doc/whatsnew
parent7eb03ddf118c01ef2ae64f013493386f520eb3ec (diff)
downloadcpython-258fabefdefecc83914fc16f79f1131d8ee2dc80.zip
cpython-258fabefdefecc83914fc16f79f1131d8ee2dc80.tar.gz
cpython-258fabefdefecc83914fc16f79f1131d8ee2dc80.tar.bz2
#11109: clean up docs, add whatsnew entry, and fix Justin's last name.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index ee4fde4..c4065b3 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1805,6 +1805,16 @@ socket
(Contributed by Ross Lagerwall in :issue:`10866`.)
+socketserver
+------------
+
+:class:`~socketserver.BaseServer` now has an overridable method
+:meth:`~socketserver.BaseServer.service_actions` that is called by the
+:meth:`~socketserver.BaseServer.serve_forever` method in the service loop.
+:class:`~socketserver.ForkingMixIn` now uses this to clean up zombie
+child proceses. (Contributed by Justin Warkentin in :issue:`11109`.)
+
+
sqlite3
-------