Skip to content

Commit

Permalink
Tweak docstring per review.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Apr 9, 2021
1 parent beda7de commit f2bf440
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/BTrees/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,9 @@ def __repr__(self):
class _MutableSetMixin(object):
# Like _MutableMappingMixin, but for sets.
def isdisjoint(self, other):
'Return True if two sets have a null intersection.'
"""
Return True if two sets have a null intersection.
"""
for value in other:
if value in self:
return False
Expand Down

0 comments on commit f2bf440

Please sign in to comment.