summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-03 07:05:50 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-03 07:05:50 +0000
commitc331d688682fb8a106b4677f7c5867ee91aeb8ad (patch)
tree56f15557a7f434e2b3d4b28fb4a0ceac4708b713 /pym
parentd7a49d2705ee9ce532e8fd30c897695052b9c053 (diff)
downloadportage-c331d688682fb8a106b4677f7c5867ee91aeb8ad.tar.gz
portage-c331d688682fb8a106b4677f7c5867ee91aeb8ad.tar.bz2
portage-c331d688682fb8a106b4677f7c5867ee91aeb8ad.zip
Add a digraph.NONE constant to represent no priority.
svn path=/main/trunk/; revision=4579
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 73b88a838..50ad21635 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -312,6 +312,7 @@ def flatten(mytokens):
#beautiful directed graph object
class digraph:
+ NONE = -1
SOFT = 0
MEDIUM = 1
HARD = 2