From df422dd610cfcee4daadd05fb0d36bc461417d5e 2012-02-25 16:47:03 From: Jörgen Stenarson Date: 2012-02-25 16:47:03 Subject: [PATCH] Fix for failing testsuite when using --with-xml-coverage on windows. See #1428 for discussion. --- diff --git a/IPython/utils/process.py b/IPython/utils/process.py index 2c2c669..566f68c 100644 --- a/IPython/utils/process.py +++ b/IPython/utils/process.py @@ -96,11 +96,7 @@ def pycmd2argv(cmd): return [cmd] else: if sys.platform == 'win32': - # The -u option here turns on unbuffered output, which is required - # on Win32 to prevent wierd conflict and problems with Twisted. - # Also, use sys.executable to make sure we are picking up the - # right python exe. - return [sys.executable, '-u', cmd] + return [sys.executable, cmd] else: return [sys.executable, cmd]