| | |
- fork()
- fork() -> (pid, master_fd)
Fork and make the child a session leader with a controlling terminal.
- openpty()
- openpty() -> (master_fd, slave_fd)
Open a pty master/slave pair, using os.openpty() if possible.
- spawn(argv, master_read=<function _read at 0xb65ba79c>, stdin_read=<function _read at 0xb65ba79c>)
- Create a spawned process.
|