summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-07 19:55:10 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-07 19:55:10 (GMT)
commit16fd3381d4e5ba884c5b9e5135a1d7cc5e5e9a2c (patch)
tree45c1a53f38873d166be1b8d27ba57a4617112d17
parent56b5fdd295d7e4be64036529cbbb6ffd252ac6bc (diff)
downloadcpython-16fd3381d4e5ba884c5b9e5135a1d7cc5e5e9a2c.zip
cpython-16fd3381d4e5ba884c5b9e5135a1d7cc5e5e9a2c.tar.gz
cpython-16fd3381d4e5ba884c5b9e5135a1d7cc5e5e9a2c.tar.bz2
Apply two small changes to the Windows code, according to SF bug
#427345. These are supposed to support binary data and avoid buffering problems on Windows.
-rw-r--r--Lib/CGIHTTPServer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py
index d6afaa1..809cab7 100644
--- a/Lib/CGIHTTPServer.py
+++ b/Lib/CGIHTTPServer.py
@@ -223,7 +223,7 @@ class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
if interp.lower().endswith("w.exe"):
# On Windows, use python.exe, not python.exe
interp = interp[:-5] = interp[-4:]
- cmdline = "%s %s" % (interp, cmdline)
+ cmdline = "%s -u %s" % (interp, cmdline)
if '=' not in query and '"' not in query:
cmdline = '%s "%s"' % (cmdline, query)
self.log_error("command: %s", cmdline)
@@ -231,7 +231,7 @@ class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
nbytes = int(length)
except:
nbytes = 0
- fi, fo = os.popen2(cmdline)
+ fi, fo = os.popen2(cmdline, 'b')
if self.command.lower() == "post" and nbytes > 0:
data = self.rfile.read(nbytes)
fi.write(data)