Lines Matching refs:termios
1 :mod:`termios` --- POSIX style tty control
4 .. module:: termios
15 complete description of these calls, see :manpage:`termios(3)` Unix manual
17 *termios* style tty I/O control configured during installation.
39 constants defined in the :mod:`termios` module.
94 import termios, sys
96 old = termios.tcgetattr(fd)
97 new = termios.tcgetattr(fd)
98 new[3] = new[3] & ~termios.ECHO # lflags
100 termios.tcsetattr(fd, termios.TCSADRAIN, new)
103 termios.tcsetattr(fd, termios.TCSADRAIN, old)