Python input truncation

Add a reply

Posted by recursive 901 days ago:
If you're running python on windows like I am, you may have trouble reading nonprintable characters on stdin. To avoid false EOFs, run python with the -u command line switch.

Add a reply