src/eric7/DebugClients/Python/getpass.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
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

eric ide

mercurial