commit | f73813a8bbb55ac725720f4d3839b51f992f1f3f | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon Apr 02 11:15:17 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Mon Apr 02 11:15:17 2012 -0400 |
tree | 472c83f2ff6a7a1f1f93e3f2dedfe86cd1f24ae2 | |
parent | fe9417726c8d2a15ae11f553ae521c3ba6dfc6b7 [diff] [blame] |
prevent writing to stderr from messing up the exception state (closes #14474)
diff --git a/Misc/NEWS b/Misc/NEWS index 15c943c..8593a10 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #14474: Save and restore exception state in thread.start_new_thread() + while writing error message if the thread leaves a unhandled exception. + - Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch by Suman Saha.