summaryrefslogtreecommitdiff
path: root/Lib/getpass.py
Commit message (Expand)AuthorAgeFilesLines
* remove duplicated imports (closes #25502)Benjamin Peterson2015-10-281-1/+1
* #21169: add comment and doc update for getpass change.R David Murray2014-04-141-0/+1
* #21169: fix getpass to use replace error handler on UnicodeEncodeError.R David Murray2014-04-131-1/+6
* #18116: backport fix to 3.3 since real-world failure mode demonstrated.R David Murray2013-12-271-45/+54
* Remove redundant imports.Florent Xicluna2011-11-041-3/+1
* Fix for issue11236 getpass.getpass to respond ctrl-c or ctrl-zSenthil Kumaran2011-04-261-1/+1
* Merged revisions 87306 via svnmerge fromBrian Curtin2010-12-161-6/+1
* Merged revisions 76017 via svnmerge fromGregory P. Smith2009-11-011-3/+8
* Merged revisions 75231 via svnmerge fromBenjamin Peterson2009-10-041-1/+1
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-30/+75
* Patch #1703 by Philip Jenvey -- getpass() should flush after writing prompt.Guido van Rossum2008-01-011-0/+1
* Fixed #1578: Problems in win_getpassChristian Heimes2007-12-101-4/+4
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-10/+15
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-171-2/+1
* 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