##// END OF EJS Templates
don't close_fds on Windows...
MinRK -
Show More
@@ -316,7 +316,7 b' def connect_qtconsole(connection_file=None, argv=None, profile=None):'
316 ])
316 ])
317
317
318 return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv,
318 return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv,
319 stdout=PIPE, stderr=PIPE, close_fds=True,
319 stdout=PIPE, stderr=PIPE, close_fds=(sys.platform != 'win32'),
320 )
320 )
321
321
322
322
General Comments 0
You need to be logged in to leave comments. Login now