Convert input to upper case on screen as it is typed

Gregory Ewing greg.ewing at canterbury.ac.nz
Tue Apr 19 01:46:31 EDT 2016


Ben Finney wrote:
> 
> I am still looking for a solution (a Python-specific one would be fine).
>

The only other way I can think of is to put the tty
into raw mode and do your own line editing and echoing.
You could wrap it all up in a file-like object for the
rest of the code to use.

-- 
Greg



More information about the Python-list mailing list