From: Zac Medico Date: Tue, 16 Oct 2012 06:51:35 +0000 (-0700) Subject: Add missing PopenProcess class from last commit. X-Git-Tag: v2.2.0_alpha139~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eeef84317758b01ae2c1ba8f343343179aebc01e;p=portage.git Add missing PopenProcess class from last commit. --- 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