[Zodb-checkins] CVS: Zope/lib/python/BTrees - Interfaces.py:1.7.18.2
Andreas Jung
andreas@digicool.com
Thu, 28 Feb 2002 18:48:48 -0500
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv10620
Modified Files:
Tag: Zope-2_5-branch
Interfaces.py
Log Message:
a intersection is not a union :)
=== Zope/lib/python/BTrees/Interfaces.py 1.7.18.1 => 1.7.18.2 ===
def intersection(c1, c2):
- """Compute the Union of c1 and c2.
+ """Compute the intersection of c1 and c2.
If c1 is None, then c2 is returned, otherwise, if c2 is None,
then c1 is returned.