aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/getpass.py
Commit message (Expand)AuthorAge
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-17
* Fix SF #640094, on win32 getpass runs into unix_getpassNeal Norwitz2002-11-20
* win_getpass(): if sys.stdin is not sys.__stdin__, useGuido van Rossum2001-08-30
* Remove two redundant statements (PyChecker).Guido van Rossum2001-08-13
* Get the needed constants from termios, not TERMIOS.Fred Drake2001-02-27
* more __all__ updatesSkip Montanaro2001-01-20
* Whitespace normalization.Tim Peters2001-01-14
* Simple changes by Gerrit Holl - move author acknowledgements out ofGuido van Rossum2000-02-28
* print a warning if the password will be echoed.Jeremy Hylton1999-10-18
* Mod by Jack Jansen: on Macintosh, use EasyDialogs.GetPassword if itGuido van Rossum1999-02-11
* Do the check for lacking sys.stdin.fileno() *before* testing forGuido van Rossum1998-09-22
* When sys.stdin.fileno() doesn't work, fall back to default_getpass()Guido van Rossum1998-09-21
* Don't use raw_input() to ask for the password; this puts the passwordGuido van Rossum1998-07-28
* Don't catch interrupts in getpass() -- the finally clause will resetGuido van Rossum1998-06-12
* Be nicer to systems that have neither termios nor msvcrt.Guido van Rossum1998-04-13
* Another new utility: getpass() prompts for a password, with echo off.Guido van Rossum1998-04-09