diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-10-12 01:26:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-10-12 01:26:07 (GMT) |
commit | 526bec21d0cca80768cf3aa8bae2d720bdf7b5bb (patch) | |
tree | 7a883e2b35ae24ab7de76400508a3d0a1115a4a8 | |
parent | 65e50555f8268a48e769e1fc9583d4e12bfbc689 (diff) | |
download | cpython-526bec21d0cca80768cf3aa8bae2d720bdf7b5bb.zip cpython-526bec21d0cca80768cf3aa8bae2d720bdf7b5bb.tar.gz cpython-526bec21d0cca80768cf3aa8bae2d720bdf7b5bb.tar.bz2 |
platform we don't care about
-rw-r--r-- | Doc/library/pty.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/pty.rst b/Doc/library/pty.rst index 6579ef0..be879f2 100644 --- a/Doc/library/pty.rst +++ b/Doc/library/pty.rst @@ -3,8 +3,8 @@ ======================================== .. module:: pty - :platform: IRIX, Linux - :synopsis: Pseudo-Terminal Handling for SGI and Linux. + :platform: Linux + :synopsis: Pseudo-Terminal Handling for Linux. .. moduleauthor:: Steen Lumholt .. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il> @@ -14,8 +14,8 @@ 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 SGI and Linux. (The Linux code is supposed to work on other -platforms, but hasn't been tested yet.) +do it only for Linux. (The Linux code is supposed to work on other platforms, +but hasn't been tested yet.) The :mod:`pty` module defines the following functions: @@ -32,8 +32,8 @@ The :mod:`pty` module defines the following functions: .. function:: openpty() Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or - emulation code for SGI and generic Unix systems. Return a pair of file - descriptors ``(master, slave)``, for the master and the slave end, respectively. + emulation code for generic Unix systems. Return a pair of file descriptors + ``(master, slave)``, for the master and the slave end, respectively. .. function:: spawn(argv[, master_read[, stdin_read]]) |