Gave __sub__/difference a factor of 2-5 speed boost.
diff --git a/Lib/sets.py b/Lib/sets.py
index bf3ff4d..4665373 100644
--- a/Lib/sets.py
+++ b/Lib/sets.py
@@ -223,9 +223,10 @@
             return NotImplemented
         result = self.__class__()
         data = result._data
+        otherdata = other._data
         value = True
         for elt in self:
-            if elt not in other:
+            if elt not in otherdata:
                 data[elt] = value
         return result