From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 63EAC138010 for ; Tue, 16 Oct 2012 06:51:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2C3AE0441; Tue, 16 Oct 2012 06:51:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5C21BE0441 for ; Tue, 16 Oct 2012 06:51:49 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBF6033D78E for ; Tue, 16 Oct 2012 06:51:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2D35CE5436 for ; Tue, 16 Oct 2012 06:51:47 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1350370295.eeef84317758b01ae2c1ba8f343343179aebc01e.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/_async/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/_async/PopenProcess.py X-VCS-Directories: pym/portage/util/_async/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: eeef84317758b01ae2c1ba8f343343179aebc01e X-VCS-Branch: master Date: Tue, 16 Oct 2012 06:51:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07aefa19-ea33-4d2a-9bbc-7218918b5d4e X-Archives-Hash: 4e6563abd70cb9a065747bb67640a97c commit: eeef84317758b01ae2c1ba8f343343179aebc01e Author: Zac Medico gentoo org> AuthorDate: Tue Oct 16 06:51:35 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Oct 16 06:51:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=eeef8431 Add missing PopenProcess class from last commit. --- pym/portage/util/_async/PopenProcess.py | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/pym/portage/util/_async/PopenProcess.py b/pym/portage/util/_async/PopenProcess.py new file mode 100644 index 0000000..7c42c85 --- /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