Whitespace normalization.

This commit is contained in:
Tim Peters 2003-02-04 00:38:20 +00:00
parent 0dd23aa539
commit 322d553143
1 changed files with 1 additions and 1 deletions

View 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.