| commit | e900096dc42cd0d590752e00ba3983b4672da806 | [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 | d8adc06a6312185ad155f4dea4e146e8447c42e8 | |
| parent | b6af60c2a9e2625987bcdd6775eb9fe8834c9641 [diff] [blame] |
prevent writing to stderr from messing up the exception state (closes #14474)
diff --git a/Misc/NEWS b/Misc/NEWS index 2fa911e..3d9b822 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,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.