Kaydet (Commit) cbad4df1 authored tarafından Brian Curtin's avatar Brian Curtin

Close subprocess pipes in the non-UNIX section of run_cgi.

Clears a number of ResourceWarnings in test_httpservers.
üst 69cd87b5
......@@ -1131,6 +1131,8 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
self.wfile.write(stdout)
if stderr:
self.log_error('%s', stderr)
p.stderr.close()
p.stdout.close()
status = p.returncode
if status:
self.log_error("CGI script exit status %#x", status)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment