51 """ |
51 """ |
52 Function to prompt for a password, with echo turned off. |
52 Function to prompt for a password, with echo turned off. |
53 |
53 |
54 @param prompt Prompt to be shown to the user |
54 @param prompt Prompt to be shown to the user |
55 @type str |
55 @type str |
56 @param stream input stream to read from (ignored) |
56 @param stream input stream to read from (unused) |
57 @type file |
57 @type file |
58 @return Password entered by the user |
58 @return Password entered by the user |
59 @rtype str |
59 @rtype str |
60 """ |
60 """ |
61 return input(prompt, False) # secok |
61 return input(prompt, False) # secok |