Explorar o código

Remove unused

Denis K %!s(int64=9) %!d(string=hai) anos
pai
achega
db47620a03
Modificáronse 1 ficheiros con 0 adicións e 8 borrados
  1. 0 8
      jet/ordered_set.py

+ 0 - 8
jet/ordered_set.py

@@ -57,11 +57,3 @@ class OrderedSet(collections.MutableSet):
         if isinstance(other, OrderedSet):
             return len(self) == len(other) and list(self) == list(other)
         return set(self) == set(other)
-
-
-if __name__ == '__main__':
-    s = OrderedSet('abracadaba')
-    t = OrderedSet('simsalabim')
-    print(s | t)
-    print(s & t)
-    print(s - t)