summaryrefslogtreecommitdiff
path: root/Lib/test/script_helper.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-11 13:43:31 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-11 13:43:31 +0200
commit1c33280c9534180733c595de160919dd86e74659 (patch)
tree94634b5bead1da641297df511d5123911b43b303 /Lib/test/script_helper.py
parentc89a451ae13339d803cad639f2c61af2c67f5fc2 (diff)
parent9845c7ebc5cf5af495123701664f275562f45243 (diff)
downloadcpython-git-1c33280c9534180733c595de160919dd86e74659.tar.gz
Issue #21425: Fix flushing of standard streams in the interactive interpreter.
Diffstat (limited to 'Lib/test/script_helper.py')
-rw-r--r--Lib/test/script_helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py
index af0545bac2..993b199d11 100644
--- a/Lib/test/script_helper.py
+++ b/Lib/test/script_helper.py
@@ -78,7 +78,7 @@ def assert_python_failure(*args, **env_vars):
"""
return _assert_python(False, *args, **env_vars)
-def spawn_python(*args, **kw):
+def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw):
"""Run a Python subprocess with the given arguments.
kw is extra keyword args to pass to subprocess.Popen. Returns a Popen
@@ -87,7 +87,7 @@ def spawn_python(*args, **kw):
cmd_line = [sys.executable, '-E']
cmd_line.extend(args)
return subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
- stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
+ stdout=stdout, stderr=stderr,
**kw)
def kill_python(p):