blob: 6579ef0c53a8708044f697a8702138ee38366341 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`pty` --- Pseudo-terminal utilities
3========================================
4
5.. module:: pty
6 :platform: IRIX, Linux
7 :synopsis: Pseudo-Terminal Handling for SGI and Linux.
8.. moduleauthor:: Steen Lumholt
9.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
10
11
12The :mod:`pty` module defines operations for handling the pseudo-terminal
13concept: starting another process and being able to write to and read from its
14controlling terminal programmatically.
15
Mark Dickinson934896d2009-02-21 20:59:32 +000016Because pseudo-terminal handling is highly platform dependent, there is code to
Georg Brandl116aa622007-08-15 14:28:22 +000017do it only for SGI and Linux. (The Linux code is supposed to work on other
18platforms, but hasn't been tested yet.)
19
20The :mod:`pty` module defines the following functions:
21
22
23.. function:: fork()
24
25 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return
26 value is ``(pid, fd)``. Note that the child gets *pid* 0, and the *fd* is
27 *invalid*. The parent's return value is the *pid* of the child, and *fd* is a
28 file descriptor connected to the child's controlling terminal (and also to the
29 child's standard input and output).
30
31
32.. function:: openpty()
33
34 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
35 emulation code for SGI and generic Unix systems. Return a pair of file
36 descriptors ``(master, slave)``, for the master and the slave end, respectively.
37
38
39.. function:: spawn(argv[, master_read[, stdin_read]])
40
41 Spawn a process, and connect its controlling terminal with the current
42 process's standard io. This is often used to baffle programs which insist on
43 reading from the controlling terminal.
44
45 The functions *master_read* and *stdin_read* should be functions which read from
Georg Brandl9afde1c2007-11-01 20:32:30 +000046 a file descriptor. The defaults try to read 1024 bytes each time they are
Georg Brandl116aa622007-08-15 14:28:22 +000047 called.
48