summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/_async/PopenProcess.py
blob: 7c42c85b3b49f8bbbcda7a5d86b9cfea535dff4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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