summaryrefslogtreecommitdiff
path: root/Lib/getpass.py
Commit message (Expand)AuthorAgeFilesLines
* getpass: update docstrings (#49)MRMillon2017-02-121-1/+0
* 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: getpass no longer always falls back to stdin.R David Murray2013-07-101-45/+53
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* #17484: add tests for getpass.R David Murray2013-04-081-0/+1
* Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1
* Remove redundant imports.Florent Xicluna2011-11-041-3/+1
* issue11236 getpass.getpass to respond ctrl-c or ctrl-zSenthil Kumaran2011-03-241-1/+1
* EasyDialogs was removed in 3.x. fallback_getpass will always be the answer here.Brian Curtin2010-12-161-6/+1
* Merged revisions 76000,76016 via svnmerge fromGregory P. Smith2009-11-011-3/+8
* Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,...Benjamin 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