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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=247b52bdec269b673a8e6361bcf2d14361747e81;p=thirdparty%2FPython%2Fcpython.git Issue #5715: In socketserver, close the server socket in the child process. --- 247b52bdec269b673a8e6361bcf2d14361747e81 diff --cc Misc/NEWS index 47b9c3248ece,fc54f8905af5..8dad4f2d3232 --- 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.