36.9. pty β Pseudo-terminal utilitiesΒΆ
The pty module defines operations for handling the pseudo-terminal
concept: starting another process and being able to write to and read from its
controlling terminal programmatically.
Because pseudo-terminal handling is highly platform dependent, there is code to do it only for Linux. (The Linux code is supposed to work on other platforms, but hasnβt been tested yet.)
The pty module defines the following functions:
-
pty.fork()ΒΆ Fork. Connect the childβs controlling terminal to a pseudo-terminal. Return value is
(pid, fd). Note that the child gets pid 0, and the fd is invalid. The parentβs return value is the pid of the child, and fd is a file descriptor connected to the childβs controlling terminal (and also to the childβs standard input and output).
-
pty.openpty()ΒΆ Open a new pseudo-terminal pair, using
os.openpty()if possible, or emulation code for generic Unix systems. Return a pair of file descriptors(master, slave), for the master and the slave end, respectively.
-
pty.spawn(argv[, master_read[, stdin_read]])ΒΆ Spawn a process, and connect its controlling terminal with the current processβs standard io. This is often used to baffle programs which insist on reading from the controlling terminal.
The functions master_read and stdin_read should be functions which read from a file descriptor. The defaults try to read 1024 bytes each time they are called.
