This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: getpass.getpass queries on STDOUT not STERR (*nix)
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, jonlasser, splitscreen
Priority: normal Keywords:

Created on 2006-03-07 19:48 by jonlasser, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg27697 - (view) Author: Jon Lasser (jonlasser) Date: 2006-03-07 19:48
Expected behavior of a *nix system would be to get the
password query on STDERR, so that (for non-interactive
applications) one can send the output of the command to
somewhere else, and not be hanging on a password
request that was never seen by the user at the
terminal. (And also so that output isn't polluted by
the password request, when parsing it via a pipeline.)
msg27698 - (view) Author: Matt Fleming (splitscreen) Date: 2006-03-31 17:43
Logged In: YES 
user_id=1126061

Patch #1462298 fixes this.
msg27699 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-03-31 18:43
Logged In: YES 
user_id=849994

Added a "stream" argument in rev. 43495.
History
Date User Action Args
2022-04-11 14:56:15adminsetgithub: 42992
2006-03-07 19:48:45jonlassercreate