[Python-checkins] python/dist/src/Doc/lib libtty.tex,1.3,1.4

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Aug 31 15:05:38 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21635

Modified Files:
	libtty.tex 
Log Message:
Use correct constant; remove reference to TERMIOS.py

Index: libtty.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtty.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libtty.tex	28 Nov 2001 07:26:15 -0000	1.3
+++ libtty.tex	31 Aug 2004 13:05:36 -0000	1.4
@@ -18,19 +18,17 @@
 
 \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}



More information about the Python-checkins mailing list