import getpass
password=getpass.getpass(prompt="Password: ")
print(password)
This really simple code displays the error:
Warning (from warnings module):
File "C:\Python33\lib\getpass.py", line 92
return fallback_getpass(prompt, stream)
GetPassWarning: Can not control echo on the terminal.
Warning: Password input may be echoed.
Password:
It does work as an input but the prompt isn't working. Running python 33 64-bit, anyone know whats happening?