mirror of https://github.com/python/cpython
EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here.
This commit is contained in:
parent
971dc01e8a
commit
ff47a133e1
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue