@gen_test
def test_subprocess(self):
subproc = Subprocess(
- [sys.executable, "-u", "-i"],
+ [sys.executable, "-u", "-i", "-I"],
stdin=Subprocess.STREAM,
stdout=Subprocess.STREAM,
stderr=subprocess.STDOUT,
def test_close_stdin(self):
# Close the parent's stdin handle and see that the child recognizes it.
subproc = Subprocess(
- [sys.executable, "-u", "-i"],
+ [sys.executable, "-u", "-i", "-I"],
stdin=Subprocess.STREAM,
stdout=Subprocess.STREAM,
stderr=subprocess.STDOUT,