summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-23 12:04:53 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-23 12:04:53 (GMT)
commit32366b45e89e52d96dd3fdd8241846ff29d57fae (patch)
treea2621af9b9818d2cc9be912a2a823d62be644df9 /Misc/NEWS
parent95503238235a8c4387606f43aae4b8f641ac6614 (diff)
downloadcpython-32366b45e89e52d96dd3fdd8241846ff29d57fae.zip
cpython-32366b45e89e52d96dd3fdd8241846ff29d57fae.tar.gz
cpython-32366b45e89e52d96dd3fdd8241846ff29d57fae.tar.bz2
Merged revisions 80404 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r80404 | victor.stinner | 2010-04-23 14:02:30 +0200 (ven., 23 avril 2010) | 4 lines Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't execute indirectly Python signal handlers anymore because mywrite() ignores exceptions (KeyboardInterrupt). ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 32def3d..980cd69 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.1.3?
Core and Builtins
-----------------
+- Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't execute
+ indirectly Python signal handlers anymore because mywrite() ignores
+ exceptions (KeyboardInterrupt)
+
- Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing
unicode string (eg. backslashreplace)