diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-23 12:02:30 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-23 12:02:30 (GMT) |
commit | 14284c2f3b9ede92553f866c136047f3369e2c4b (patch) | |
tree | c0c012c31452b0282a0155e83afaf3b2acea7ae1 /Misc | |
parent | 349fd5211196baa7331ae99b34b07595efbe071e (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) |