summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-05 12:40:49 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-05 12:40:49 (GMT)
commit926fd4ee32de00ddb44df111f830678e2bcc6524 (patch)
treea6e5cda549defe46bae0ff2e520b09fd2c7c81ac /Misc
parentf3c157f639f3da24ccfc532aabe01af1ba0111c5 (diff)
downloadcpython-926fd4ee32de00ddb44df111f830678e2bcc6524.zip
cpython-926fd4ee32de00ddb44df111f830678e2bcc6524.tar.gz
cpython-926fd4ee32de00ddb44df111f830678e2bcc6524.tar.bz2
Issue #8313: traceback.format_exception_only() encodes unicode message to
ASCII with backslashreplace error handler if str(value) failed
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 38fae31..4f8684a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #8313: traceback.format_exception_only() encodes unicode message to
+ ASCII with backslashreplace error handler if str(value) failed
+
- Issue #8567: Fix precedence of signals in Decimal module: when a
Decimal operation raises multiple signals and more than one of those
signals is trapped, the specification determines the order in which