Lines Matching +full:- +full:- +full:no +full:- +full:tty
3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
4 getuser() - Get the user name from the environment or password database.
6 GetPassWarning - This UserWarning is issued when getpass() cannot prevent
16 # Gregory P. Smith (tty support & GetPassWarning)
32 the tty. If no tty is available defaults to sys.stderr.
36 EOFError: If our input tty or stdin was closed.
42 tty = None
44 # Always try reading and writing directly on the tty first.
45 fd = os.open('/dev/tty', os.O_RDWR|os.O_NOCTTY)
46 tty = os.fdopen(fd, 'w+', 1)
47 input = tty
49 stream = tty
80 # We can't control the tty or stdin. Give up and use normal IO.
82 del input, tty # clean up unused file objects before blocking
104 pw = pw[:-1]
136 if line[-1] == '\n':
137 line = line[:-1]
164 # McMillan Installer, make sure we have a UNIX-compatible termios