Don't set FD_CLOEXEC on stdio/stdin/stderr etc.

Fixes issue #40.
This commit is contained in:
Yury Selivanov 2016-07-09 12:27:53 -04:00
parent e3cbfa1aa8
commit af4ab228dc
2 changed files with 0 additions and 4 deletions

View File

@ -472,5 +472,3 @@ cdef extern from "uv.h" nogil:
const uv_process_options_t* options) const uv_process_options_t* options)
int uv_process_kill(uv_process_t* handle, int signum) int uv_process_kill(uv_process_t* handle, int signum)
void uv_disable_stdio_inheritance()

View File

@ -168,8 +168,6 @@ cdef class Loop:
self, "loop._exec_queued_writes", self, "loop._exec_queued_writes",
<method_t>self._exec_queued_writes, self)) <method_t>self._exec_queued_writes, self))
uv.uv_disable_stdio_inheritance()
self._coroutine_wrapper_set = False self._coroutine_wrapper_set = False
def __init__(self): def __init__(self):