From: Serhiy Storchaka Date: Sun, 21 Sep 2014 19:09:20 +0000 (+0300) Subject: Issue #22423: Unhandled exception in thread no longer causes unhandled X-Git-Tag: v3.5.0a1~887 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c904e87c1317973440001f9afc4e0febfc344a4a;p=python Issue #22423: Unhandled exception in thread no longer causes unhandled AttributeError when sys.stderr is None. --- c904e87c1317973440001f9afc4e0febfc344a4a diff --cc Misc/NEWS index 0c6c12d6e1,956721a756..1c4a4b0b06 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -137,8 -32,13 +137,11 @@@ Core and Builtin Library ------- + - Issue #22423: Unhandled exception in thread no longer causes unhandled + AttributeError when sys.stderr is None. + - Issue #21091: Fix API bug: email.message.EmailMessage.is_attachment is now - a method. Since EmailMessage is provisional, we can change the API in a - maintenance release, but we use a trick to remain backward compatible with - 3.4.0/1. + a method. - Issue #21079: Fix email.message.EmailMessage.is_attachment to return the correct result when the header has parameters as well as a value.