From: Charles-François Natali Date: Tue, 24 May 2011 16:29:46 +0000 (+0200) Subject: Issue #5715: In socketserver, close the server socket in the child process. X-Git-Tag: v3.3.0a1~2183^2~129 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=247b52bdec269b673a8e6361bcf2d14361747e81;p=python Issue #5715: In socketserver, close the server socket in the child process. --- 247b52bdec269b673a8e6361bcf2d14361747e81 diff --cc Misc/NEWS index 47b9c3248e,fc54f8905a..8dad4f2d32 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,11 +10,11 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- -Library -------- +- 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.