summaryrefslogtreecommitdiffstats
path: root/pym/portage/package/ebuild/_ipc/IpcCommand.py
blob: efb27f0a2ec4a2c394653de7bfe4571710c10998 (plain)
1
2
3
4
5
6
7
8
9
# Copyright 2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

class IpcCommand(object):

	__slots__ = ()

	def __call__(self, argv):
		raise NotImplementedError(self)