eric6/DebugClients/Python/getpass.py

branch
maintenance
changeset 7642
72721823d453
parent 7639
422fd05e9c91
child 7923
91e843545d9a
equal deleted inserted replaced
7608:f7cb83647621 7642:72721823d453
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

eric ide

mercurial