diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-23 12:04:53 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-23 12:04:53 (GMT) |
commit | 32366b45e89e52d96dd3fdd8241846ff29d57fae (patch) | |
tree | a2621af9b9818d2cc9be912a2a823d62be644df9 /Misc/NEWS | |
parent | 95503238235a8c4387606f43aae4b8f641ac6614 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) |