summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-05-24 16:29:46 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-05-24 16:29:46 (GMT)
commit247b52bdec269b673a8e6361bcf2d14361747e81 (patch)
tree528af8eb027e3e14b75ac71209a48552dd6d3300 /Misc
parent82b00c1d307f7fb39f388760b9ccd519fe3ef63b (diff)
parentcf057597e6d91c93dbb8bf63e1151d2b2da580d5 (diff)
downloadcpython-247b52bdec269b673a8e6361bcf2d14361747e81.zip
cpython-247b52bdec269b673a8e6361bcf2d14361747e81.tar.gz
cpython-247b52bdec269b673a8e6361bcf2d14361747e81.tar.bz2
Issue #5715: In socketserver, close the server socket in the child process.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 47b9c32..8dad4f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,8 @@ Core and Builtins
- Issue #12166: Move implementations of dir() specialized for various types into
the __dir__() methods of those types.
+- Issue #5715: In socketserver, close the server socket in the child process.
+
- Correct lookup of __dir__ on objects. Among other things, this causes errors
besides AttributeError found on lookup to be propagated.