summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-02 17:24:51 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-02 17:24:51 (GMT)
commitf58087ba29d79feae0eb05b9a3db01ba3b24f163 (patch)
treead7fd1223db0699c6e7d8ecf7758776650e44edb /Misc
parent4d39f6e09a5c0a0e09eb51d678bacd1adaa3f2ca (diff)
downloadcpython-f58087ba29d79feae0eb05b9a3db01ba3b24f163.zip
cpython-f58087ba29d79feae0eb05b9a3db01ba3b24f163.tar.gz
cpython-f58087ba29d79feae0eb05b9a3db01ba3b24f163.tar.bz2
Issue #8533: revert r80694; try a different fix: regrtest uses backslashreplace
error handler for stdout to avoid UnicodeEncodeError (write non-ASCII character to stdout using ASCII encoding)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e30315a..d822584 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1201,8 +1201,8 @@ Documentation
Tests
-----
-- Issue #8533: Write tracebacks and failed tests to sys.stderr instead of
- sys.stdout to avoid UnicodeEncodeError (use backslashreplace error handler)
+- Issue #8533: regrtest uses backslashreplace error handler for stdout to avoid
+ UnicodeEncodeError (write non-ASCII character to stdout using ASCII encoding)
- Issue #8576: Remove use of find_unused_port() in test_smtplib and
test_multiprocessing. Patch by Paul Moore.