diff -r 1b59c4ba121e -r 8cd4d08fa9f6 DebugClients/Python/getpass.py --- a/DebugClients/Python/getpass.py Fri Mar 11 08:55:14 2011 +0100 +++ b/DebugClients/Python/getpass.py Fri Mar 11 16:51:57 2011 +0100 @@ -13,7 +13,8 @@ is to provide a debugger compatible variant of the a.m. functions. """ -__all__ = ["getpass","getuser"] +__all__ = ["getpass", "getuser"] + def getuser(): """ @@ -37,6 +38,7 @@ import pwd return pwd.getpwuid(os.getuid())[0] + def getpass(prompt='Password: '): """ Function to prompt for a password, with echo turned off.