summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-02 09:37:08 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-02 09:37:08 (GMT)
commit0d80a5874ae2177b4352f997f962062d81734d4c (patch)
treea2577f1bf978f9ec85353fcd461c11d85f385435 /Misc
parent70d8a86ea0f98919efbb39d852a6696811682ce4 (diff)
downloadcpython-0d80a5874ae2177b4352f997f962062d81734d4c.zip
cpython-0d80a5874ae2177b4352f997f962062d81734d4c.tar.gz
cpython-0d80a5874ae2177b4352f997f962062d81734d4c.tar.bz2
Issue #8533: Write tracebacks and failed tests to sys.stderr instead of
sys.stdout to avoid UnicodeEncodeError (use backslashreplace error handler)
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 17702c7..f935480 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1198,6 +1198,9 @@ Documentation
Tests
-----
+- Issue #8533: Write tracebacks and failed tests to sys.stderr instead of
+ sys.stdout to avoid UnicodeEncodeError (use backslashreplace error handler)
+
- Issue #8576: Remove use of find_unused_port() in test_smtplib and
test_multiprocessing. Patch by Paul Moore.