From 322d553143b464ffa9b72105927469279cf3c31a Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 4 Feb 2003 00:38:20 +0000 Subject: [PATCH] Whitespace normalization. --- Lib/sets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sets.py b/Lib/sets.py index c167d960377..4f55515d0d4 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -270,7 +270,7 @@ def issuperset(self, other): 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.