Skip to content

Instantly share code, notes, and snippets.

@adaiguoguo
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adaiguoguo/b86b0bf90a4926ea340b to your computer and use it in GitHub Desktop.
Save adaiguoguo/b86b0bf90a4926ea340b to your computer and use it in GitHub Desktop.
don't close_fds on Windows
return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv,
- stdout=PIPE, stderr=PIPE, close_fds=True,
+ stdout=PIPE, stderr=PIPE, close_fds=(sys.platform != 'win32'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment