summaryrefslogtreecommitdiff
path: root/Lib/getpass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/getpass.py')
-rw-r--r--Lib/getpass.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/getpass.py b/Lib/getpass.py
index 02fe527e6b..a726189fe1 100644
--- a/Lib/getpass.py
+++ b/Lib/getpass.py
@@ -49,10 +49,10 @@ def win_getpass(prompt='Password: ', stream=None):
return default_getpass(prompt, stream)
import msvcrt
for c in prompt:
- msvcrt.putch(c)
+ msvcrt.putwch(c)
pw = ""
while 1:
- c = msvcrt.getch()
+ c = msvcrt.getwch()
if c == '\r' or c == '\n':
break
if c == '\003':
@@ -61,8 +61,8 @@ def win_getpass(prompt='Password: ', stream=None):
pw = pw[:-1]
else:
pw = pw + c
- msvcrt.putch('\r')
- msvcrt.putch('\n')
+ msvcrt.putwch('\r')
+ msvcrt.putwch('\n')
return pw