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:
parent
3efdf0630b
commit
1c76044ea0
|
@ -166,12 +166,7 @@ except (ImportError, AttributeError):
|
||||||
try:
|
try:
|
||||||
import msvcrt
|
import msvcrt
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
getpass = fallback_getpass
|
||||||
from EasyDialogs import AskPassword
|
|
||||||
except ImportError:
|
|
||||||
getpass = fallback_getpass
|
|
||||||
else:
|
|
||||||
getpass = AskPassword
|
|
||||||
else:
|
else:
|
||||||
getpass = win_getpass
|
getpass = win_getpass
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue