From: Brian Curtin Date: Thu, 16 Dec 2010 03:24:49 +0000 (+0000) Subject: EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here. X-Git-Tag: v3.2b2~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff47a133e1eee9dab60b86fb0d56ccd1022f841a;p=python 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 2eb01fac3d..ce0456608e 100644 --- a/Lib/getpass.py +++ b/Lib/getpass.py @@ -166,12 +166,7 @@ except (ImportError, AttributeError): 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: