summaryrefslogtreecommitdiffstats
path: root/Lib/sets.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-04 00:38:20 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-04 00:38:20 (GMT)
commit322d553143b464ffa9b72105927469279cf3c31a (patch)
treed72e53d1f81e94c119f589b695670f0ef6cbcf09 /Lib/sets.py
parent0dd23aa53901a29ec270c69b2de40a97335d45ab (diff)
downloadcpython-322d553143b464ffa9b72105927469279cf3c31a.zip
cpython-322d553143b464ffa9b72105927469279cf3c31a.tar.gz
cpython-322d553143b464ffa9b72105927469279cf3c31a.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/sets.py')
-rw-r--r--Lib/sets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sets.py b/Lib/sets.py
index c167d96..4f55515 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.