summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-10-02 01:47:57 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-10-02 01:47:57 (GMT)
commit6e7bd6545384c8939ddc87aded6a20b8dd096e9e (patch)
tree8e74f7e2f79c1e4e2d66a6a7b2b7e139749a6bcd /Doc/whatsnew
parent3b635cd4476422fbef7e1da1e1de66bbb939d648 (diff)
parent258fabefdefecc83914fc16f79f1131d8ee2dc80 (diff)
downloadcpython-6e7bd6545384c8939ddc87aded6a20b8dd096e9e.zip
cpython-6e7bd6545384c8939ddc87aded6a20b8dd096e9e.tar.gz
cpython-6e7bd6545384c8939ddc87aded6a20b8dd096e9e.tar.bz2
Merge #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
-------