Merged revisions 87306 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87306 | brian.curtin | 2010-12-15 21:24:49 -0600 (Wed, 15 Dec 2010) | 2 lines

  EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here.
........
This commit is contained in:
Brian Curtin 2010-12-16 03:27:11 +00:00
parent 3efdf0630b
commit 1c76044ea0
1 changed files with 1 additions and 6 deletions

View File

@ -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: