Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13528 - main/branches/2.1.6/pym/portage
Date: Thu, 30 Apr 2009 07:21:30
Message-Id: E1LzQaG-00013k-Pr@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 07:21:28 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13528
4
5 Modified:
6 main/branches/2.1.6/pym/portage/dep.py
7 Log:
8 Add note about 'use' in the Atom.intersects() docstring. (trunk r13375)
9
10 Modified: main/branches/2.1.6/pym/portage/dep.py
11 ===================================================================
12 --- main/branches/2.1.6/pym/portage/dep.py 2009-04-30 07:21:14 UTC (rev 13527)
13 +++ main/branches/2.1.6/pym/portage/dep.py 2009-04-30 07:21:28 UTC (rev 13528)
14 @@ -560,8 +560,9 @@
15
16 def intersects(self, other):
17 """
18 - Atoms with different operator or cpv attributes cause this method to
19 - return False. TODO: Detect intersection when operators are present.
20 + Atoms with different cpv, operator or use attributes cause this method
21 + to return False even though there may actually be some intersection.
22 + TODO: Detect more forms of intersection.
23 @param other: The package atom to match
24 @type other: Atom
25 @rtype: Boolean