Add isdisjoint() to the Set/MutableSet ABCs.
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index ac967b2..3a84b96 100644
--- a/Lib/_abcoll.py
+++ b/Lib/_abcoll.py
@@ -177,6 +177,12 @@
             return NotImplemented
         return self._from_iterable(value for value in other if value in self)
 
+    def isdisjoint(self, other):
+        for value in other:
+            if value in self:
+                return False
+        return True
+
     def __or__(self, other):
         if not isinstance(other, Iterable):
             return NotImplemented