From: Zac Medico Date: Fri, 4 Jan 2013 00:02:28 +0000 (-0800) Subject: SpawnProcess: support close_fds X-Git-Tag: v2.2.0_alpha150~49 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0fe235cfd0200644c205a7b4aabb1330e7f04402;p=portage.git SpawnProcess: support close_fds --- diff --git a/pym/_emerge/SpawnProcess.py b/pym/_emerge/SpawnProcess.py index 2045b2e7b..293e5be8c 100644 --- a/pym/_emerge/SpawnProcess.py +++ b/pym/_emerge/SpawnProcess.py @@ -1,4 +1,4 @@ -# Copyright 2008-2012 Gentoo Foundation +# Copyright 2008-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 from _emerge.SubProcess import SubProcess @@ -18,7 +18,7 @@ class SpawnProcess(SubProcess): _spawn_kwarg_names = ("env", "opt_name", "fd_pipes", "uid", "gid", "groups", "umask", "logfile", - "path_lookup", "pre_exec") + "path_lookup", "pre_exec", "close_fds") __slots__ = ("args",) + \ _spawn_kwarg_names + ("_pipe_logger", "_selinux_type",)