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.

Author gregory.p.smith
Recipients belopolsky, gregory.p.smith, pajs@fodder.org.uk, pitrou
Date 2009-10-31.22:26:12
SpamBayes Score 1.1484849e-06
Marked as misclassified No
Message-id <1257027975.32.0.546894185436.issue7208@psf.upfronthosting.co.za>
In-reply-to
Content
It might mean that other threads with access to the same file handle 
could interfere and intercept part of the password entry if they wanted 
to but thats not too concerning.

py3k/Modules/_io/bufferedio.c which is presumably used when input is 
sys.stdin instead of a /dev/tty file appears to lock things.

Compared to glibc's getpass implementation the locking should probably 
be done around a wider swath of getpass code in order to protect all 
possible race conditions of other code accessing the handle as we set it 
up and display the prompt.  I don't really think it is something worry 
about as it requires code executing within the context of your own 
getpass calling program to be doing something that'll interfere with 
your password reading.  If someone has -that- problem they have bigger 
issues.
History
Date User Action Args
2009-10-31 22:26:15gregory.p.smithsetrecipients: + gregory.p.smith, belopolsky, pitrou, pajs@fodder.org.uk
2009-10-31 22:26:15gregory.p.smithsetmessageid: <1257027975.32.0.546894185436.issue7208@psf.upfronthosting.co.za>
2009-10-31 22:26:13gregory.p.smithlinkissue7208 messages
2009-10-31 22:26:12gregory.p.smithcreate