summaryrefslogtreecommitdiffstats
path: root/Lib
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 /Lib
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 'Lib')
-rwxr-xr-xLib/test/regrtest.py4
-rw-r--r--Lib/test/support.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index c432ca4..ec49b95 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -939,8 +939,8 @@ def runtest_inner(test, verbose, quiet,
print("test", test, "crashed --", str(type) + ":", value)
sys.stdout.flush()
if verbose or debug:
- traceback.print_exc(file=sys.stdout)
- sys.stdout.flush()
+ traceback.print_exc(file=sys.stderr)
+ sys.stderr.flush()
return FAILED, test_time
else:
if refleak:
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 4ea6c05..3c4d5d6 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -1020,7 +1020,7 @@ def check_impl_detail(**guards):
def _run_suite(suite):
"""Run tests from a unittest.TestSuite-derived class."""
if verbose:
- runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
+ runner = unittest.TextTestRunner(sys.stderr, verbosity=2)
else:
runner = BasicTestRunner()