commit | ff47a133e1eee9dab60b86fb0d56ccd1022f841a | [log] [tgz] |
---|---|---|
author | Brian Curtin <brian.curtin@gmail.com> | Thu Dec 16 03:24:49 2010 +0000 |
committer | Brian Curtin <brian.curtin@gmail.com> | Thu Dec 16 03:24:49 2010 +0000 |
tree | 2b88c222604e7eede87e3458ce9dafdf2e40ef05 | |
parent | 971dc01e8a59bf0c0186d5b104e2a929ec293f27 [diff] |
EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here.
diff --git a/Lib/getpass.py b/Lib/getpass.py index 2eb01fa..ce04566 100644 --- a/Lib/getpass.py +++ b/Lib/getpass.py
@@ -166,12 +166,7 @@ try: import msvcrt except ImportError: - try: - from EasyDialogs import AskPassword - except ImportError: - getpass = fallback_getpass - else: - getpass = AskPassword + getpass = fallback_getpass else: getpass = win_getpass else: