Kaydet (Commit) fb9b7fd5 authored tarafından Guido van Rossum's avatar Guido van Rossum

Be nicer to systems that have neither termios nor msvcrt.

üst a16e2753
......@@ -22,7 +22,12 @@ def getpass(prompt='Password: '):
try:
import termios, TERMIOS
except ImportError:
return win_getpass(prompt)
try:
import msvcrt
except ImportError:
return default_getpass(prompt)
else:
return win_getpass(prompt)
fd = sys.stdin.fileno()
old = termios.tcgetattr(fd) # a copy to save
......@@ -59,6 +64,10 @@ def win_getpass(prompt='Password: '):
return pw
def default_getpass(prompt='Password: '):
return raw_input(prompt)
def getuser():
"""Get the username from the environment or password database.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment