From: Antoine Pitrou Date: Tue, 18 Oct 2011 14:42:55 +0000 (+0200) Subject: Issue #13188: When called without an explicit traceback argument, X-Git-Tag: v3.3.0a1~1144 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf28eacafe603fac8784d4a0b22b7864aec4a383;p=thirdparty%2FPython%2Fcpython.git Issue #13188: When called without an explicit traceback argument, generator.throw() now gets the traceback from the passed exception's ``__traceback__`` attribute. Patch by Petri Lehtinen. --- cf28eacafe603fac8784d4a0b22b7864aec4a383 diff --cc Misc/NEWS index 375b945c2009,dd31b4bb59f7..24fadae6cc8c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,8 -10,10 +10,12 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- + - Issue #13188: When called without an explicit traceback argument, + generator.throw() now gets the traceback from the passed exception's + ``__traceback__`` attribute. Patch by Petri Lehtinen. + +- Issue #13146: Writing a pyc file is now atomic under POSIX. + - Issue #7833: Extension modules built using distutils on Windows will no longer include a "manifest" to prevent them failing at import time in some embedded situations.