(self)
| 2698 | self.check_close_std_fds([1, 2]) |
| 2699 | |
| 2700 | def test_close_fds_0_1_2(self): |
| 2701 | # Issue #10806: test that subprocess pipes still work properly with |
| 2702 | # all standard fds closed. |
| 2703 | self.check_close_std_fds([0, 1, 2]) |
| 2704 | |
| 2705 | def test_small_errpipe_write_fd(self): |
| 2706 | """Issue #15798: Popen should work when stdio fds are available.""" |
nothing calls this directly
no test coverage detected