]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Tue, 4 Feb 2003 00:38:20 +0000 (00:38 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 4 Feb 2003 00:38:20 +0000 (00:38 +0000)
Lib/sets.py

index c167d960377cde55917b3f93bd62add75480e263..4f55515d0d41d80e99c54418c5ec0b0655e9d58a 100644 (file)
@@ -270,7 +270,7 @@ class BaseSet(object):
         if len(self) < len(other):  # Fast check for obvious cases
             return False
         for elt in ifilter(self._data.has_key, other, True):
-                return False
+            return False
         return True
 
     # Inequality comparisons using the is-subset relation.