diff options
author | Georg Brandl <georg@python.org> | 2007-08-15 14:27:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-15 14:27:07 (GMT) |
commit | 739c01d47b9118d04e5722333f0e6b4d0c8bdd9e (patch) | |
tree | f82b450d291927fc1758b96d981aa0610947b529 /Doc/lib/libtty.tex | |
parent | 2d1649094402ef393ea2b128ba2c08c3937e6b93 (diff) | |
download | cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.zip cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.tar.gz cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.tar.bz2 |
Delete the LaTeX doc tree.
Diffstat (limited to 'Doc/lib/libtty.tex')
-rw-r--r-- | Doc/lib/libtty.tex | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Doc/lib/libtty.tex b/Doc/lib/libtty.tex deleted file mode 100644 index d42771a..0000000 --- a/Doc/lib/libtty.tex +++ /dev/null @@ -1,34 +0,0 @@ -\section{\module{tty} --- - Terminal control functions} - -\declaremodule{standard}{tty} - \platform{Unix} -\moduleauthor{Steen Lumholt}{} -\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il} -\modulesynopsis{Utility functions that perform common terminal control - operations.} - -The \module{tty} module defines functions for putting the tty into -cbreak and raw modes. - -Because it requires the \refmodule{termios} module, it will work -only on \UNIX. - -The \module{tty} module defines the following functions: - -\begin{funcdesc}{setraw}{fd\optional{, when}} -Change the mode of the file descriptor \var{fd} to raw. If \var{when} -is omitted, it defaults to \constant{termios.TCSAFLUSH}, and is passed -to \function{termios.tcsetattr()}. -\end{funcdesc} - -\begin{funcdesc}{setcbreak}{fd\optional{, when}} -Change the mode of file descriptor \var{fd} to cbreak. If \var{when} -is omitted, it defaults to \constant{termios.TCSAFLUSH}, and is passed -to \function{termios.tcsetattr()}. -\end{funcdesc} - - -\begin{seealso} - \seemodule{termios}{Low-level terminal control interface.} -\end{seealso} |