]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use correct constant; remove reference to TERMIOS.py
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 31 Aug 2004 13:05:36 +0000 (13:05 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 31 Aug 2004 13:05:36 +0000 (13:05 +0000)
Doc/lib/libtty.tex

index c4f54b04ecd1cf2de0eeaf402a6a76f9cf62ee1b..d42771aac5d5407ed99ccd7696534506620f276e 100644 (file)
@@ -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}