Try to fix issue #21425 workaround for shared library builds

This commit is contained in:
Antoine Pitrou 2014-05-11 19:13:43 +02:00
parent 5006a56e39
commit ffef2447ee
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw):
# - http://reinout.vanrees.org/weblog/2009/08/14/readline-invisible-character-hack.html # - http://reinout.vanrees.org/weblog/2009/08/14/readline-invisible-character-hack.html
# - http://stackoverflow.com/questions/15760712/python-readline-module-prints-escape-character-during-import # - http://stackoverflow.com/questions/15760712/python-readline-module-prints-escape-character-during-import
# - http://lists.gnu.org/archive/html/bug-readline/2007-08/msg00004.html # - http://lists.gnu.org/archive/html/bug-readline/2007-08/msg00004.html
env = kw.setdefault('env', {}) env = kw.setdefault('env', dict(os.environ))
env.setdefault('TERM', 'vt100') env['TERM'] = 'vt100'
return subprocess.Popen(cmd_line, stdin=subprocess.PIPE, return subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
stdout=stdout, stderr=stderr, stdout=stdout, stderr=stderr,
**kw) **kw)