47 @param prompt Prompt to be shown to the user |
47 @param prompt Prompt to be shown to the user |
48 @type str |
48 @type str |
49 @return Password entered by the user |
49 @return Password entered by the user |
50 @rtype str |
50 @rtype str |
51 """ |
51 """ |
52 return input(prompt, False) |
52 return input(prompt, False) # secok |
53 |
53 |
54 |
54 |
55 unix_getpass = getpass |
55 unix_getpass = getpass |
56 win_getpass = getpass |
56 win_getpass = getpass |
57 default_getpass = getpass |
57 default_getpass = getpass |
58 fallback_getpass = getpass |
58 fallback_getpass = getpass |
59 |
|
60 # |
|
61 # eflag: noqa = M702 |
|