summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:05:36 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:05:36 +0000
commitec17d706d7e77a73834ad3ee5c32b3edbebcd778 (patch)
treee96964eb8d6e943995e257e8609c2d4dbf36a45a /Doc
parentcac091a746b35a040e21bc855a90338d0cb4a154 (diff)
downloadcpython-ec17d706d7e77a73834ad3ee5c32b3edbebcd778.tar.gz
Use correct constant; remove reference to TERMIOS.py
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libtty.tex6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/lib/libtty.tex b/Doc/lib/libtty.tex
index c4f54b04ec..d42771aac5 100644
--- a/Doc/lib/libtty.tex
+++ b/Doc/lib/libtty.tex
@@ -18,19 +18,17 @@ 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.TCAFLUSH}, and is passed
+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.TCAFLUSH}, and is passed
+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.}
- \seemodule[TERMIOSuppercase]{TERMIOS}{Constants useful for terminal
- control operations.}
\end{seealso}