.iterkeys() is not needed.

This commit is contained in:
Raymond Hettinger 2002-10-04 20:01:48 +00:00
parent 57b38ed424
commit bfcdb8734e
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class BaseSet(object):
little, big = self, other
else:
little, big = other, self
common = filter(big._data.has_key, little._data.iterkeys())
common = filter(big._data.has_key, little._data)
return self.__class__(common)
def intersection(self, other):