diff options
Diffstat (limited to 'Lib/getpass.py')
-rw-r--r-- | Lib/getpass.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/getpass.py b/Lib/getpass.py index 19843d7..b81026f 100644 --- a/Lib/getpass.py +++ b/Lib/getpass.py @@ -6,10 +6,11 @@ getuser() - get the user name from the environment or password database On Windows, the msvcrt module will be used. On the Mac EasyDialogs.AskPassword is used, if available. -Authors: Piers Lauder (original) - Guido van Rossum (Windows support and cleanup) """ +# Authors: Piers Lauder (original) +# Guido van Rossum (Windows support and cleanup) + import sys def unix_getpass(prompt='Password: '): |