diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-04 00:38:20 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-04 00:38:20 (GMT) |
commit | 322d553143b464ffa9b72105927469279cf3c31a (patch) | |
tree | d72e53d1f81e94c119f589b695670f0ef6cbcf09 /Lib | |
parent | 0dd23aa53901a29ec270c69b2de40a97335d45ab (diff) | |
download | cpython-322d553143b464ffa9b72105927469279cf3c31a.zip cpython-322d553143b464ffa9b72105927469279cf3c31a.tar.gz cpython-322d553143b464ffa9b72105927469279cf3c31a.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/sets.py | 2 |
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. |