You need to run Python in binary mode. Change your CGI script from:
#!C:/Python25/python/exe
!C:/Python25/python.exe
or whatever it says to:
#!C:/Python25/python/exe !C:/Python25/python.exe -u
Or you can do it programmatically like this:
msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
before starting to read from stdin.
