summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-04-02 15:15:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-04-02 15:15:17 (GMT)
commite900096dc42cd0d590752e00ba3983b4672da806 (patch)
treed8adc06a6312185ad155f4dea4e146e8447c42e8 /Misc
parentb6af60c2a9e2625987bcdd6775eb9fe8834c9641 (diff)
downloadcpython-e900096dc42cd0d590752e00ba3983b4672da806.zip
cpython-e900096dc42cd0d590752e00ba3983b4672da806.tar.gz
cpython-e900096dc42cd0d590752e00ba3983b4672da806.tar.bz2
prevent writing to stderr from messing up the exception state (closes #14474)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2fa911e..3d9b822 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
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.