summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-23 12:02:30 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-23 12:02:30 (GMT)
commit14284c2f3b9ede92553f866c136047f3369e2c4b (patch)
treec0c012c31452b0282a0155e83afaf3b2acea7ae1 /Misc
parent349fd5211196baa7331ae99b34b07595efbe071e (diff)
downloadcpython-14284c2f3b9ede92553f866c136047f3369e2c4b.zip
cpython-14284c2f3b9ede92553f866c136047f3369e2c4b.tar.gz
cpython-14284c2f3b9ede92553f866c136047f3369e2c4b.tar.bz2
Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't execute
indirectly Python signal handlers anymore because mywrite() ignores exceptions (KeyboardInterrupt).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ccc011..0be8626 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
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)