diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-03 08:35:56 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-03 08:35:56 (GMT) |
commit | e7bb78139606d85bcf139dd108355de2d19d8756 (patch) | |
tree | e664cd4f9106d613daba69a9ddc64f50b80bb266 /Misc/NEWS | |
parent | 336e54f4c73299e0d716842f0accce2f5560304b (diff) | |
download | cpython-e7bb78139606d85bcf139dd108355de2d19d8756.zip cpython-e7bb78139606d85bcf139dd108355de2d19d8756.tar.gz cpython-e7bb78139606d85bcf139dd108355de2d19d8756.tar.bz2 |
Merged revisions 80694,80703 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r80694 | victor.stinner | 2010-05-02 11:37:08 +0200 (dim., 02 mai 2010) | 3 lines
Issue #8533: Write tracebacks and failed tests to sys.stderr instead of
sys.stdout to avoid UnicodeEncodeError (use backslashreplace error handler)
........
r80703 | victor.stinner | 2010-05-02 19:24:51 +0200 (dim., 02 mai 2010) | 4 lines
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/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -140,6 +140,9 @@ Build Tests ----- +- 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. |