summaryrefslogtreecommitdiff
blob: 626013c18b604d6cda76dc8cc69c648f77947a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

from _emerge.DepPriority import DepPriority
class BlockerDepPriority(DepPriority):
	__slots__ = ()
	def __int__(self):
		return 0

	def __str__(self):
		return 'blocker'

BlockerDepPriority.instance = BlockerDepPriority()