Hey, everyone just started doing little Python to help with a few scripts at work, but I seem to be fixated on a little problem.
I am using Eclipse with pydev for my development platform and developing against python 2.7.3. I'm just trying to ask the user for a password using:
password = getpass.getpass()
This line works as expected when running at the terminal / command prompt, however, when I launch the Eclipse console, user input is not hidden as it should be. Any ideas how to fix this?
source share