Skip to content

Commit af4ab22

Browse files
committed
Don't set FD_CLOEXEC on stdio/stdin/stderr etc.
Fixes issue #40.
1 parent e3cbfa1 commit af4ab22

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

uvloop/includes/uv.pxd

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,5 +472,3 @@ cdef extern from "uv.h" nogil:
472472
const uv_process_options_t* options)
473473

474474
int uv_process_kill(uv_process_t* handle, int signum)
475-
476-
void uv_disable_stdio_inheritance()

uvloop/loop.pyx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,6 @@ cdef class Loop:
168168
self, "loop._exec_queued_writes",
169169
<method_t>self._exec_queued_writes, self))
170170

171-
uv.uv_disable_stdio_inheritance()
172-
173171
self._coroutine_wrapper_set = False
174172

175173
def __init__(self):

0 commit comments

Comments
 (0)