From eeef84317758b01ae2c1ba8f343343179aebc01e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 15 Oct 2012 23:51:35 -0700 Subject: [PATCH] Add missing PopenProcess class from last commit. --- pym/portage/util/_async/PopenProcess.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pym/portage/util/_async/PopenProcess.py diff --git a/pym/portage/util/_async/PopenProcess.py b/pym/portage/util/_async/PopenProcess.py new file mode 100644 index 000000000..7c42c85b3 --- /dev/null +++ b/pym/portage/util/_async/PopenProcess.py @@ -0,0 +1,15 @@ +# Copyright 2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +from _emerge.SubProcess import SubProcess + +class PopenProcess(SubProcess): + + __slots__ = ("proc",) + + def __init__(self, **kwargs): + SubProcess.__init__(self, **kwargs) + self.pid = self.proc.pid + + def _start(self): + pass -- 2.26.2