Lines Matching refs:input
33 prompt: Written on stream to ask for the input. Default: 'Password: '
37 The seKr3t input.
39 EOFError: If our input tty or stdin was closed.
40 GetPassWarning: When we were unable to turn echo off on the input.
51 input = io.TextIOWrapper(tty)
52 stack.enter_context(input)
54 stream = input
63 input = sys.stdin
77 passwd = _raw_input(prompt, stream, input=input)
88 if stream is not input:
125 print("Warning: Password input may be echoed.", file=stream)
129 def _raw_input(prompt="", stream=None, input=None):
133 if not input:
134 input = sys.stdin
146 line = input.readline()