[Python-checkins] cpython (merge 3.5 -> 3.5): merge heads
benjamin.peterson
python-checkins at python.org
Tue Sep 13 01:10:17 EDT 2016
https://hg.python.org/cpython/rev/a753f6e4501b
changeset: 103739:a753f6e4501b
branch: 3.5
parent: 103736:2be31da53dcc
parent: 103733:5ae3782c4e05
user: Benjamin Peterson <benjamin at python.org>
date: Mon Sep 12 22:09:11 2016 -0700
summary:
merge heads
files:
Lib/test/test_tools/test_fixcid.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/Lib/test/test_tools/test_fixcid.py b/Lib/test/test_tools/test_fixcid.py
--- a/Lib/test/test_tools/test_fixcid.py
+++ b/Lib/test/test_tools/test_fixcid.py
@@ -83,7 +83,8 @@
script = os.path.join(scriptsdir, "fixcid.py")
with support.swap_attr(sys, "argv", argv), \
support.swap_attr(sys, "stdin", StringIO(input)), \
- support.captured_stdout() as output:
+ support.captured_stdout() as output, \
+ support.captured_stderr():
try:
runpy.run_path(script, run_name="__main__")
except SystemExit as exit:
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list