summaryrefslogtreecommitdiffstats
path: root/Lib/getpass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/getpass.py')
-rw-r--r--Lib/getpass.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/getpass.py b/Lib/getpass.py
index 918f2ed..840f7a0 100644
--- a/Lib/getpass.py
+++ b/Lib/getpass.py
@@ -13,6 +13,8 @@ On the Mac EasyDialogs.AskPassword is used, if available.
import sys
+__all__ = ["getpass","getuser"]
+
def unix_getpass(prompt='Password: '):
"""Prompt for a password, with echo turned off.