show/hide this revision's text 2 Typo

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.

show/hide this revision's text 1

You need to run Python in binary mode. Change your CGI script from:

#!C:/Python25/python/exe

or whatever it says to:

#!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.