diff options
author | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
commit | 98d9fd3e68075ce6fe7642ed8793c1abee69edf6 (patch) | |
tree | e7edc9f6bc97f7543df5b741520cf0f607176b15 /Lib/getpass.py | |
parent | ee28c3a5eae41a9b349ebbe7c4583d6a36a1984c (diff) | |
download | cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.zip cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.gz cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.bz2 |
Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
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: '): |