From: Tim Peters Date: Tue, 4 Feb 2003 00:38:20 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.3c1~2057 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=322d553143b464ffa9b72105927469279cf3c31a;p=python Whitespace normalization. --- diff --git a/Lib/sets.py b/Lib/sets.py index c167d96037..4f55515d0d 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -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.