aboutsummaryrefslogtreecommitdiff
blob: 1004a3717beec9bb581c6f4584b534ac9bbad4c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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

	def __str__(self):
		return 'blocker'

BlockerDepPriority.instance = BlockerDepPriority()