summaryrefslogtreecommitdiff
path: root/Lib/getpass.py
Commit message (Expand)AuthorAgeFilesLines
* issue11236 getpass.getpass to respond ctrl-c or ctrl-zSenthil Kumaran2011-04-261-1/+1
* Fixes issue7208 - getpass would still allow the password to be echoed onGregory P. Smith2009-10-311-3/+8
* kill bare exceptBenjamin Peterson2009-09-171-1/+1
* Major improvements:Gregory P. Smith2008-04-221-34/+76
* If sys.stdin is not a tty, fall back to default_getpass after printingGregory P. Smith2008-04-211-0/+4
* Bug #1445068: getpass.getpass() can now be given an explicit streamGeorg Brandl2006-03-311-10/+15
* Fix SF #640094, on win32 getpass runs into unix_getpassNeal Norwitz2002-11-201-1/+4
* win_getpass(): if sys.stdin is not sys.__stdin__, useGuido van Rossum2001-08-301-0/+2
* Remove two redundant statements (PyChecker).Guido van Rossum2001-08-131-2/+0
* Get the needed constants from termios, not TERMIOS.Fred Drake2001-02-271-4/+4
* more __all__ updatesSkip Montanaro2001-01-201-0/+2
* Whitespace normalization.Tim Peters2001-01-141-76/+75
* Simple changes by Gerrit Holl - move author acknowledgements out ofGuido van Rossum2000-02-281-2/+3
* print a warning if the password will be echoed.Jeremy Hylton1999-10-181-22/+26
* Mod by Jack Jansen: on Macintosh, use EasyDialogs.GetPassword if itGuido van Rossum1999-02-111-1/+8
* Do the check for lacking sys.stdin.fileno() *before* testing forGuido van Rossum1998-09-221-4/+4
* When sys.stdin.fileno() doesn't work, fall back to default_getpass()Guido van Rossum1998-09-211-1/+4
* Don't use raw_input() to ask for the password; this puts the passwordGuido van Rossum1998-07-281-2/+17
* Don't catch interrupts in getpass() -- the finally clause will resetGuido van Rossum1998-06-121-2/+3
* Be nicer to systems that have neither termios nor msvcrt.Guido van Rossum1998-04-131-1/+10
* Another new utility: getpass() prompts for a password, with echo off.Guido van Rossum1998-04-091-0/+79