(self, handle)
| 99 | set_spawning_popen(None) |
| 100 | |
| 101 | def duplicate_for_child(self, handle): |
| 102 | assert self is get_spawning_popen() |
| 103 | return reduction.duplicate(handle, self.sentinel) |
| 104 | |
| 105 | def wait(self, timeout=None): |
| 106 | if self.returncode is not None: |
nothing calls this directly
no test coverage detected