Kaydet (Commit) 431774f3 authored tarafından Tim Golden's avatar Tim Golden

Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto instead

üst 3de8a305
...@@ -886,6 +886,19 @@ class Popen(object): ...@@ -886,6 +886,19 @@ class Popen(object):
# translate errno using _sys_errlist (or simliar), but # translate errno using _sys_errlist (or simliar), but
# how can this be done from Python? # how can this be done from Python?
raise WindowsError(*e.args) raise WindowsError(*e.args)
finally:
# Child is launched. Close the parent's copy of those pipe
# handles that only the child should have open. You need
# to make sure that no handles to the write end of the
# output pipe are maintained in this process or else the
# pipe will not close when the child process exits and the
# ReadFile will hang.
if p2cread is not None:
p2cread.Close()
if c2pwrite is not None:
c2pwrite.Close()
if errwrite is not None:
errwrite.Close()
# Retain the process handle, but close the thread handle # Retain the process handle, but close the thread handle
self._child_created = True self._child_created = True
...@@ -893,20 +906,6 @@ class Popen(object): ...@@ -893,20 +906,6 @@ class Popen(object):
self.pid = pid self.pid = pid
ht.Close() ht.Close()
# Child is launched. Close the parent's copy of those pipe
# handles that only the child should have open. You need
# to make sure that no handles to the write end of the
# output pipe are maintained in this process or else the
# pipe will not close when the child process exits and the
# ReadFile will hang.
if p2cread is not None:
p2cread.Close()
if c2pwrite is not None:
c2pwrite.Close()
if errwrite is not None:
errwrite.Close()
def _internal_poll(self, _deadstate=None, def _internal_poll(self, _deadstate=None,
_WaitForSingleObject=_subprocess.WaitForSingleObject, _WaitForSingleObject=_subprocess.WaitForSingleObject,
_WAIT_OBJECT_0=_subprocess.WAIT_OBJECT_0, _WAIT_OBJECT_0=_subprocess.WAIT_OBJECT_0,
......
...@@ -425,7 +425,6 @@ sp_CreateProcess(PyObject* self, PyObject* args) ...@@ -425,7 +425,6 @@ sp_CreateProcess(PyObject* self, PyObject* args)
PyObject* env_mapping; PyObject* env_mapping;
char* current_directory; char* current_directory;
PyObject* startup_info; PyObject* startup_info;
DWORD error;
if (! PyArg_ParseTuple(args, "zzOOiiOzO:CreateProcess", if (! PyArg_ParseTuple(args, "zzOOiiOzO:CreateProcess",
&application_name, &application_name,
...@@ -475,22 +474,8 @@ sp_CreateProcess(PyObject* self, PyObject* args) ...@@ -475,22 +474,8 @@ sp_CreateProcess(PyObject* self, PyObject* args)
Py_XDECREF(environment); Py_XDECREF(environment);
if (! result) { if (! result)
error = GetLastError(); return PyErr_SetFromWindowsErr(GetLastError());
if(si.hStdInput != INVALID_HANDLE_VALUE) {
CloseHandle(si.hStdInput);
si.hStdInput = INVALID_HANDLE_VALUE;
}
if(si.hStdOutput != INVALID_HANDLE_VALUE) {
CloseHandle(si.hStdOutput);
si.hStdOutput = INVALID_HANDLE_VALUE;
}
if(si.hStdError != INVALID_HANDLE_VALUE) {
CloseHandle(si.hStdError);
si.hStdError = INVALID_HANDLE_VALUE;
}
return PyErr_SetFromWindowsErr(error);
}
return Py_BuildValue("NNii", return Py_BuildValue("NNii",
sp_handle_new(pi.hProcess), sp_handle_new(pi.hProcess),
......
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