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 tim.peters
Recipients
Date 2002-04-20.20:10:26
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Assigning to MarkH in case he has a bright idea.  I don't.

The problem is that getpass on Windows is implemented via 
raw Windows console I/O, and console I/O buffers interact 
in strange and undocumented ways with C's stdio buffers.  
I've never found a reliable way to keep them in synch, and 
MS says you can't mix the two, period.  The only workaround 
I know of is to build your own raw_input() workalike out of 
the msvcrt module's console I/O routines (getch(), etc).
History
Date User Action Args
2007-08-23 14:00:48adminlinkissue546558 messages
2007-08-23 14:00:48admincreate