Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12488 - main/trunk/pym/_emerge
Date: Mon, 12 Jan 2009 17:37:04
Message-Id: E1LMQid-000638-QG@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-01-12 17:36:54 +0000 (Mon, 12 Jan 2009)
3 New Revision: 12488
4
5 Modified:
6 main/trunk/pym/_emerge/__init__.py
7 Log:
8 Mention the blocker_lookahead parameter in the depgraph._greedy_slots()
9 docstring.
10
11
12 Modified: main/trunk/pym/_emerge/__init__.py
13 ===================================================================
14 --- main/trunk/pym/_emerge/__init__.py 2009-01-12 16:51:36 UTC (rev 12487)
15 +++ main/trunk/pym/_emerge/__init__.py 2009-01-12 17:36:54 UTC (rev 12488)
16 @@ -5640,10 +5640,10 @@
17 def _greedy_slots(self, root_config, atom, blocker_lookahead=False):
18 """
19 Return a list of slot atoms corresponding to installed slots that
20 - differ from the slot of the highest visible match. Slot atoms that
21 - would trigger a blocker conflict are automatically discarded,
22 - potentially allowing automatic uninstallation of older slots when
23 - appropriate.
24 + differ from the slot of the highest visible match. When
25 + blocker_lookahead is True, slot atoms that would trigger a blocker
26 + conflict are automatically discarded, potentially allowing automatic
27 + uninstallation of older slots when appropriate.
28 """
29 highest_pkg, in_graph = self._select_package(root_config.root, atom)
30 if highest_pkg is None: